~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/plugin_dictionary.test

Update for test split.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Drizzle's plugin/modules dictionary.
 
2
 
 
3
CREATE SCHEMA data_dictionary;
 
4
use data_dictionary;
 
5
 
 
6
--replace_column 1 #
 
7
SELECT count(*) FROM plugins;
 
8
 
 
9
--replace_column 1 #
 
10
SELECT count(*) FROM modules;
 
11
 
 
12
show create table MODULES ;
 
13
show create table PLUGINS ;
 
14
 
 
15
# Slap tests for concurrency
 
16
CREATE SCHEMA drizzleslap;
 
17
 
 
18
#--exec $DRIZZLE_SLAP --silent  --concurrency=5 --iterations=20  --query="select * from data_dictionary.plugins" --delimiter=";"
 
19
#--exec $DRIZZLE_SLAP --silent  --concurrency=5 --iterations=20  --query="select * from data_dictionary.modules" --delimiter=";"
 
20
 
 
21
DROP SCHEMA drizzleslap;
 
22
 
 
23
DROP SCHEMA data_dictionary;