2
# Verify that the single_thread scheduler actually can process queries
5
select PLUGIN_NAME from information_schema.plugins where is_active="YES" and plugin_type="Scheduler";
8
DROP TABLE IF EXISTS t1;
12
some_text VARCHAR(100) NOT NULL
14
INSERT INTO t1 VALUES ("I love testing");
15
SELECT some_text FROM t1;
1
# Start with thread_handling=pool-of-threads
2
# and run a number of tests
4
-- source include/common-tests.inc