mirror of
https://github.com/MariaDB/server.git
synced 2025-10-27 05:56:07 +03:00
WL#3397 Refactoring storage engine test cases (for falcon)
It contains fixes according to second code review.
- Remove any occurence of hardcoded assignments of storage engines
- Use variable names exact telling what it is used for
- Updated comments
- remove trailing spaces
mysql-test/include/handler.inc:
- Replace hardcoded MyISAM with assignments via variable
mysql-test/include/mix1.inc:
- Replace hardcoded MyISAM with assignments via variable
- Remove hardcoded InnoDB assignments (They were introduced by late push)
- Remove trailing spaces
mysql-test/include/mix2.inc:
- Replace hardcode MyISAM assignments
- Remove trailing spaces
- Engine assignments via variable refers to the use of the storage engine
$other_non_trans_engine_type, $other_live_chcks_engine_type ...
mysql-test/include/read_many_rows.inc:
Replace hardcoded MyISAM assignment
mysql-test/include/rowid_order.inc:
remove trailing spaces
mysql-test/r/handler_innodb.result:
Updated result
mysql-test/r/handler_myisam.result:
Updated result
mysql-test/r/innodb_mysql.result:
Updated result
mysql-test/r/mix2_myisam.result:
Updated result
mysql-test/r/read_many_rows_innodb.result:
Updated result
mysql-test/r/rowid_order_innodb.result:
Updated result
mysql-test/t/handler_innodb.test:
Introduce $variables
mysql-test/t/handler_myisam.test:
Introduce $variables
mysql-test/t/mix2_myisam.test:
Introduce $variables
mysql-test/t/read_many_rows_innodb.test:
Introduce $variables
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
SET SESSION STORAGE_ENGINE = InnoDB;
|
|
DROP TABLE IF EXISTS t1, t2, t3, t4;
|
|
CREATE TABLE t1 (id INTEGER) ENGINE=MyISAM;
|
|
CREATE TABLE t2 (id INTEGER PRIMARY KEY);
|
|
CREATE TABLE t3 (a CHAR(32) PRIMARY KEY,id INTEGER);
|
|
CREATE TABLE t4 (a CHAR(32) PRIMARY KEY,id INTEGER) ENGINE=MyISAM;
|
|
INSERT INTO t1 (id) VALUES (1);
|
|
INSERT INTO t1 SELECT id+1 FROM t1;
|
|
INSERT INTO t1 SELECT id+2 FROM t1;
|
|
INSERT INTO t1 SELECT id+4 FROM t1;
|
|
INSERT INTO t1 SELECT id+8 FROM t1;
|
|
INSERT INTO t1 SELECT id+16 FROM t1;
|
|
INSERT INTO t1 SELECT id+32 FROM t1;
|
|
INSERT INTO t1 SELECT id+64 FROM t1;
|
|
INSERT INTO t1 SELECT id+128 FROM t1;
|
|
INSERT INTO t1 SELECT id+256 FROM t1;
|
|
INSERT INTO t1 SELECT id+512 FROM t1;
|
|
INSERT INTO t1 SELECT id+1024 FROM t1;
|
|
INSERT INTO t1 SELECT id+2048 FROM t1;
|
|
INSERT INTO t1 SELECT id+4096 FROM t1;
|
|
INSERT INTO t1 SELECT id+8192 FROM t1;
|
|
INSERT INTO t1 SELECT id+16384 FROM t1;
|
|
INSERT INTO t1 SELECT id+32768 FROM t1;
|
|
INSERT INTO t1 SELECT id+65536 FROM t1;
|
|
INSERT INTO t1 SELECT id+131072 FROM t1;
|
|
INSERT INTO t1 SELECT id+262144 FROM t1;
|
|
INSERT INTO t1 SELECT id+524288 FROM t1;
|
|
INSERT INTO t1 SELECT id+1048576 FROM t1;
|
|
INSERT INTO t2 SELECT * FROM t1;
|
|
INSERT INTO t3 SELECT CONCAT(id),id FROM t2 ORDER BY -id;
|
|
INSERT INTO t4 SELECT * FROM t3 ORDER BY CONCAT(a);
|
|
SELECT SUM(id) FROM t3;
|
|
SUM(id)
|
|
2199024304128
|
|
DROP TABLE t1,t2,t3,t4;
|