~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/character_collation_dictionary.test

Update for test split.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Drizzle's data dictionary.
 
2
 
 
3
CREATE SCHEMA data_dictionary;
 
4
 
 
5
use data_dictionary;
 
6
 
 
7
show create table CHARACTER_SETS ;
 
8
show create table COLLATIONS ;
 
9
 
 
10
SELECT * FROM character_sets ORDER BY CHARACTER_SET_NAME;
 
11
SELECT * FROM collations ORDER BY COLLATION_NAME;
 
12
 
 
13
# Slap tests for concurrency
 
14
CREATE SCHEMA drizzleslap;
 
15
 
 
16
#--exec $DRIZZLE_SLAP --silent  --concurrency=5 --iterations=20  --query="select * from data_dictionary.character_sets" --delimiter=";"
 
17
#--exec $DRIZZLE_SLAP --silent  --concurrency=5 --iterations=20  --query="select * from data_dictionary.collations" --delimiter=";"
 
18
 
 
19
DROP SCHEMA drizzleslap;
 
20
DROP SCHEMA data_dictionary;