~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/collation_dictionary/tests/t/data_dictionary.test

  • Committer: Brian Aker
  • Date: 2010-02-18 18:23:35 UTC
  • mto: (1273.19.13 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1304.
  • Revision ID: brian@gaz-20100218182335-zvt2wk5b1eny9s9p
Slap tests for collation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
ORDER BY collation_name;
26
26
 
27
27
 
28
 
# Slap tests for concurrency
29
 
CREATE SCHEMA drizzleslap;
30
 
 
31
 
--exec $DRIZZLE_SLAP --silent  --concurrency=5 --iterations=20  --query="select * from data_dictionary.character_sets" --delimiter=";"
32
 
--exec $DRIZZLE_SLAP --silent  --concurrency=5 --iterations=20  --query="select * from data_dictionary.collations" --delimiter=";"
33
 
 
34
28
# Test for data_dictionary.CHARACTER_SETS &
35
29
select * from data_dictionary.CHARACTER_SETS
36
30
where CHARACTER_SET_NAME like 'latin1%';
42
36
where COLLATION_NAME like 'latin1%';
43
37
 
44
38
 
45
 
DROP SCHEMA drizzleslap;
46
39
DROP SCHEMA data_dictionary;