~ubuntu-branches/ubuntu/lucid/mysql-dfsg-5.1/lucid-security

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 22:33:55 UTC
  • mto: (1.2.1) (37.1.1 lucid-security)
  • mto: This revision was merged to the branch mainline in revision 36.
  • Revision ID: package-import@ubuntu.com-20120222223355-ku1tb4r70osci6v2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--disable_warnings
 
2
DROP TABLE IF EXISTS t8;
 
3
--enable_warnings
 
4
CREATE TABLE t8(c1 TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
 
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 t8; DROP TABLE t8; SHOW TABLES;
 
9
CREATE TABLE t8(c1 SMALLINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
 
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 t8; DROP TABLE t8; SHOW TABLES;
 
14
CREATE TABLE t8(c1 MEDIUMINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
 
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 t8; DROP TABLE t8; SHOW TABLES;
 
19
CREATE TABLE t8(c1 INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
 
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 t8; DROP TABLE t8; SHOW TABLES;
 
24
CREATE TABLE t8(c1 INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY);
 
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 t8; DROP TABLE t8; SHOW TABLES;
 
29
CREATE TABLE t8(c1 BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
 
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 t8; DROP TABLE t8; SHOW TABLES;
 
34