blob: fd88cc60a8d321bb2dcfa3078542c70bee3b4d4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Include file to extend partition_crash with a second table.
# To be used with WL#4445: EXCHANGE PARTITION WITH TABLE.
--eval $create_statement2
--eval $insert_statement2
SHOW CREATE TABLE t2;
--sorted_result
SELECT * FROM t2;
--source suite/parts/inc/partition_crash.inc
SHOW CREATE TABLE t2;
--sorted_result
SELECT * FROM t2;
DROP TABLE t2;
|