~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 
# Verify that the single_thread scheduler actually can process queries
#

select PLUGIN_NAME from information_schema.plugins where is_active="YES" and plugin_type="Scheduler";

--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
CREATE TABLE t1
(
  some_text VARCHAR(100) NOT NULL
);
INSERT INTO t1 VALUES ("I love testing");
SELECT some_text FROM t1;
DROP TABLE t1;