~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/t/tc_column_null.test

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--disable_warnings
 
2
DROP TABLE IF EXISTS t1;
 
3
--enable_warnings
 
4
CREATE TABLE t1(c1 BIT NULL);
 
5
SHOW TABLES;
 
6
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
7
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
8
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
9
CREATE TABLE t1(c1 TINYINT NULL);
 
10
SHOW TABLES;
 
11
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
12
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
13
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
14
CREATE TABLE t1(c1 SMALLINT NULL);
 
15
SHOW TABLES;
 
16
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
17
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
18
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
19
CREATE TABLE t1(c1 MEDIUMINT NULL);
 
20
SHOW TABLES;
 
21
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
22
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
23
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
24
CREATE TABLE t1(c1 INT NULL);
 
25
SHOW TABLES;
 
26
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
27
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
28
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
29
CREATE TABLE t1(c1 INTEGER NULL);
 
30
SHOW TABLES;
 
31
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
32
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
33
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
34
CREATE TABLE t1(c1 BIGINT NULL);
 
35
SHOW TABLES;
 
36
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
37
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
38
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
39
CREATE TABLE t1(c1 DECIMAL NULL);
 
40
SHOW TABLES;
 
41
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
42
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
43
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
44
CREATE TABLE t1(c1 DEC NULL);
 
45
SHOW TABLES;
 
46
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
47
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
48
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
49
CREATE TABLE t1(c1 FIXED NULL);
 
50
SHOW TABLES;
 
51
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
52
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
53
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
54
CREATE TABLE t1(c1 NUMERIC NULL);
 
55
SHOW TABLES;
 
56
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
57
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
58
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
59
CREATE TABLE t1(c1 DOUBLE NULL);
 
60
SHOW TABLES;
 
61
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
62
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
63
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
64
CREATE TABLE t1(c1 REAL NULL);
 
65
SHOW TABLES;
 
66
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
67
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
68
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
69
CREATE TABLE t1(c1 DOUBLE PRECISION NULL);
 
70
SHOW TABLES;
 
71
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
72
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
73
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
74
CREATE TABLE t1(c1 FLOAT NULL);
 
75
SHOW TABLES;
 
76
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
77
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
78
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
79
CREATE TABLE t1(c1 DATE NULL);
 
80
SHOW TABLES;
 
81
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
82
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
83
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
84
CREATE TABLE t1(c1 TIME NULL);
 
85
SHOW TABLES;
 
86
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
87
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
88
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
89
CREATE TABLE t1(c1 TIMESTAMP NULL);
 
90
SHOW TABLES;
 
91
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
92
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
93
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
94
CREATE TABLE t1(c1 DATETIME NULL);
 
95
SHOW TABLES;
 
96
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
97
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
98
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
99
CREATE TABLE t1(c1 YEAR NULL);
 
100
SHOW TABLES;
 
101
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
102
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
103
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
104
CREATE TABLE t1(c1 TINYBLOB NULL);
 
105
SHOW TABLES;
 
106
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
107
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
108
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
109
CREATE TABLE t1(c1 BLOB NULL);
 
110
SHOW TABLES;
 
111
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
112
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
113
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
114
CREATE TABLE t1(c1 MEDIUMBLOB NULL);
 
115
SHOW TABLES;
 
116
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
117
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
118
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
119
CREATE TABLE t1(c1 LONGBLOB NULL);
 
120
SHOW TABLES;
 
121
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
122
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
123
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
124
CREATE TABLE t1(c1 TINYTEXT NULL);
 
125
SHOW TABLES;
 
126
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
127
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
128
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
129
CREATE TABLE t1(c1 TEXT NULL);
 
130
SHOW TABLES;
 
131
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
132
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
133
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
134
CREATE TABLE t1(c1 MEDIUMTEXT NULL);
 
135
SHOW TABLES;
 
136
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
137
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
138
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
139
CREATE TABLE t1(c1 LONGTEXT NULL);
 
140
SHOW TABLES;
 
141
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
 
142
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
 
143
SHOW CREATE TABLE t1; DROP TABLE t1; SHOW TABLES;
 
144