~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/r/an_string.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t1;
 
2
CREATE TABLE t1(c1 CHAR(100) NULL, c2 CHAR(100) NULL);
 
3
INSERT INTO t1 VALUES('abc','ABCDEFG');
 
4
INSERT INTO t1 VALUES('123','1234567890');
 
5
ANALYZE TABLE t1;
 
6
Table   Op      Msg_type        Msg_text
 
7
test.t1 analyze status  OK
 
8
DROP TABLE t1;
 
9
CREATE TABLE t1(c1 VARCHAR(100) NULL, c2 VARCHAR(100) NULL);
 
10
INSERT INTO t1 VALUES('abc','ABCDEFG');
 
11
INSERT INTO t1 VALUES('123','1234567890');
 
12
ANALYZE TABLE t1;
 
13
Table   Op      Msg_type        Msg_text
 
14
test.t1 analyze status  OK
 
15
DROP TABLE t1;
 
16
CREATE TABLE t1(c1 BINARY(100) NULL, c2 BINARY(100) NULL);
 
17
INSERT INTO t1 VALUES('abc','ABCDEFG');
 
18
INSERT INTO t1 VALUES('123','1234567890');
 
19
ANALYZE TABLE t1;
 
20
Table   Op      Msg_type        Msg_text
 
21
test.t1 analyze status  OK
 
22
DROP TABLE t1;
 
23
CREATE TABLE t1(c1 VARBINARY(100) NULL, c2 VARBINARY(100) NULL);
 
24
INSERT INTO t1 VALUES('abc','ABCDEFG');
 
25
INSERT INTO t1 VALUES('123','1234567890');
 
26
ANALYZE TABLE t1;
 
27
Table   Op      Msg_type        Msg_text
 
28
test.t1 analyze status  OK
 
29
DROP TABLE t1;
 
30
CREATE TABLE t1(c1 BLOB(100) NULL, c2 BLOB(100) NULL);
 
31
INSERT INTO t1 VALUES('abc','ABCDEFG');
 
32
INSERT INTO t1 VALUES('123','1234567890');
 
33
ANALYZE TABLE t1;
 
34
Table   Op      Msg_type        Msg_text
 
35
test.t1 analyze status  OK
 
36
DROP TABLE t1;
 
37
CREATE TABLE t1(c1 TEXT(100) NULL, c2 TEXT(100) NULL);
 
38
INSERT INTO t1 VALUES('abc','ABCDEFG');
 
39
INSERT INTO t1 VALUES('123','1234567890');
 
40
ANALYZE TABLE t1;
 
41
Table   Op      Msg_type        Msg_text
 
42
test.t1 analyze status  OK
 
43
DROP TABLE t1;