mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
c92b9b7315
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
100 lines
4.9 KiB
Text
100 lines
4.9 KiB
Text
--disable_warnings
|
|
DROP TABLE IF EXISTS t4;
|
|
--enable_warnings
|
|
CREATE TABLE t4(c1 TINYBLOB NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 BLOB NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 MEDIUMBLOB NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 LONGBLOB NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 TINYTEXT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 TEXT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 MEDIUMTEXT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 LONGTEXT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 TINYBLOB NOT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 BLOB NOT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 MEDIUMBLOB NOT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 LONGBLOB NOT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 TINYTEXT NOT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 TEXT NOT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 MEDIUMTEXT NOT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
CREATE TABLE t4(c1 LONGTEXT NOT NULL);
|
|
CREATE UNIQUE INDEX i1 ON t4(c1(100));
|
|
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 t4; DROP TABLE t4; SHOW TABLES;
|
|
|