~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/processlist_dictionary.test

Update for test split.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#Interface to processlist.
 
2
 
 
3
CREATE SCHEMA data_dictionary;
 
4
use data_dictionary;
 
5
 
 
6
show create table PROCESSLIST ;
 
7
 
 
8
--replace_column 1 #
 
9
SELECT ID FROM processlist;
 
10
 
 
11
--replace_column 1 #
 
12
SELECT ID FROM processlist ORDER BY ID;
 
13
 
 
14
--replace_column 1 #
 
15
SELECT a.ID FROM processlist as a, processlist as b ORDER BY ID;
 
16
 
 
17
--replace_column 1 #
 
18
SELECT a.ID FROM processlist as a, data_dictionary.processlist as b;
 
19
 
 
20
# Slap tests for concurrency
 
21
CREATE SCHEMA drizzleslap;
 
22
 
 
23
#--exec $DRIZZLE_SLAP --silent  --concurrency=5 --iterations=20  --query="SELECT a.ID FROM data_dictionary.processlist as a, data_dictionary.processlist as b ORDER BY ID" --delimiter=";"
 
24
#--exec $DRIZZLE_SLAP --silent  --concurrency=5 --iterations=20  --query="select * from data_dictionary.processlist" --delimiter=";"
 
25
 
 
26
DROP SCHEMA drizzleslap;
 
27
 
 
28
DROP SCHEMA data_dictionary;