polardbxengine/mysql-test/suite/xengine_main/t/temptable_error_injection.test

18 lines
326 B
Plaintext

-- source include/have_debug.inc
CREATE TABLE t (c INT);
INSERT INTO t VALUES (1);
ANALYZE TABLE t;
SET debug = '+d,temptable_create_return_full';
SELECT * FROM t AS t1, t AS t2 ORDER BY 1 LIMIT 1;
SET debug = '-d,temptable_create_return_full';
DROP TABLE t;
--source suite/xengine/include/check_xengine_log_error.inc