~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/pool_of_threads.test

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-13 01:03:01 UTC
  • mto: (1126.9.2 captain-20090915-01)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: osullivan.padraig@gmail.com-20090913010301-tcvvezipx1124acy
Added calls to the dtrace delete begin/end probes.

Show diffs side-by-side

added added

removed removed

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