~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_default_string.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 t14;
 
3
--enable_warnings
 
4
CREATE TABLE t14(c1 CHAR(10) NULL DEFAULT 'x');
 
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 t14; DROP TABLE t14; SHOW TABLES;
 
9
CREATE TABLE t14(c1 VARCHAR(10) NULL DEFAULT 'x');
 
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 t14; DROP TABLE t14; SHOW TABLES;
 
14
CREATE TABLE t14(c1 BINARY(10) NULL DEFAULT 'x');
 
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 t14; DROP TABLE t14; SHOW TABLES;
 
19
CREATE TABLE t14(c1 VARBINARY(10) NULL DEFAULT 'x');
 
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 t14; DROP TABLE t14; SHOW TABLES;
 
24
CREATE TABLE t14(c1 CHAR(10) NOT NULL DEFAULT 'x');
 
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 t14; DROP TABLE t14; SHOW TABLES;
 
29
CREATE TABLE t14(c1 VARCHAR(10) NOT NULL DEFAULT 'x');
 
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 t14; DROP TABLE t14; SHOW TABLES;
 
34
CREATE TABLE t14(c1 BINARY(10) NOT NULL DEFAULT 'x');
 
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 t14; DROP TABLE t14; SHOW TABLES;
 
39
CREATE TABLE t14(c1 VARBINARY(10) NOT NULL DEFAULT 'x');
 
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 t14; DROP TABLE t14; SHOW TABLES;
 
44