mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00
for general use. mysql-test/Makefile.am: Adding directories of additional test suites mysql-test/mysql-stress-test.pl: Adding check for additional errors checking during test run
180 lines
8.9 KiB
Plaintext
180 lines
8.9 KiB
Plaintext
--disable_warnings
|
|
DROP TABLE IF EXISTS src,dest;
|
|
--enable_warnings
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 BIT NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 TINYINT NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 SMALLINT NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 MEDIUMINT NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 INT NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 INTEGER NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 BIGINT NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 REAL NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 DOUBLE NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 FLOAT NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 DECIMAL NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 NUMERIC NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 DATE NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 TIME NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 DATETIME NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 TIMESTAMP NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 YEAR NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 TINYBLOB NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 BLOB NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 MEDIUMBLOB NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 LONGBLOB NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 TINYTEXT NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 TEXT NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 MEDIUMTEXT NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
CREATE TABLE src (c1 INT NOT NULL AUTO_INCREMENT, c2 LONGTEXT NULL, PRIMARY KEY(c1));
|
|
CREATE TABLE dst LIKE src;
|
|
SHOW TABLES;
|
|
let $ENGINE=`select variable_value from information_schema.global_variables where variable_name='STORAGE_ENGINE'`;
|
|
--replace_result $ENGINE ENGINE " PAGE_CHECKSUM=0" ""
|
|
SHOW CREATE TABLE dst; DROP TABLE dst; SHOW TABLES;
|
|
DROP TABLE src;
|
|
|