mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
27990803f6
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
61 lines
2.2 KiB
SQL
61 lines
2.2 KiB
SQL
# include/read_many_rows.inc
|
|
#
|
|
# Test how filesort and buffered-record-reads works
|
|
# This test needs a lot of time.
|
|
#
|
|
# The variables
|
|
# $engine_type -- storage engine to be tested
|
|
# $other_engine_type -- storage engine <> $engine_type, if possible
|
|
# 1. $other_engine_type must allow to store many rows
|
|
# without using non standard server options
|
|
# (does not need a t/read_many_rows_*-master.opt file)
|
|
# 2. $other_engine_type must point to an all time
|
|
# available storage engine
|
|
# 2006-08 MySQL 5.1 MyISAM and MEMORY only
|
|
# have to be set before sourcing this script.
|
|
#
|
|
# Last update:
|
|
# 2006-08-03 ML test refactored (MySQL 5.1)
|
|
# main code t/innodb-big.test --> include/read_many_rows.inc
|
|
#
|
|
|
|
eval SET SESSION STORAGE_ENGINE = $engine_type;
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS t1, t2, t3, t4;
|
|
--enable_warnings
|
|
|
|
eval CREATE TABLE t1 (id INTEGER) ENGINE=$other_engine_type;
|
|
CREATE TABLE t2 (id INTEGER PRIMARY KEY);
|
|
CREATE TABLE t3 (a CHAR(32) PRIMARY KEY,id INTEGER);
|
|
eval CREATE TABLE t4 (a CHAR(32) PRIMARY KEY,id INTEGER) ENGINE=$other_engine_type;
|
|
|
|
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;
|
|
|
|
DROP TABLE t1,t2,t3,t4;
|