~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/table_cache_dictionary/tests/t/table_cache.test

  • Committer: Brian Aker
  • Date: 2010-03-15 21:50:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1343.
  • Revision ID: brian@gaz-20100315215005-oqoblpbll9n0albj
Merge of table cache/def DD.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
show create table data_dictionary.TABLE_CACHE;
 
2
 
 
3
--replace_column 1 #
 
4
select count(*) FROM data_dictionary.TABLE_CACHE;
 
5
 
 
6
flush tables;
 
7
 
 
8
--replace_column 1 #  6 # 8 # 9 # 10 # 11 #
 
9
select * FROM data_dictionary.TABLE_CACHE ORDER BY TABLE_SCHEMA, TABLE_NAME, ARCHETYPE;
 
10
 
 
11
create table a ( a int);
 
12
create table b ( b int);
 
13
--replace_column 1 #  6 # 8 # 9 # 10 # 11 #
 
14
select * FROM a,b;
 
15
--replace_column 1 #  6 # 8 # 9 # 10 # 11 #
 
16
select * FROM data_dictionary.TABLE_CACHE ORDER BY TABLE_SCHEMA, TABLE_NAME, ARCHETYPE;
 
17
 
 
18
DROP TABLES a,b;