~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_stats/tests/t/describe.test

  • Committer: Monty Taylor
  • Date: 2010-03-11 18:27:20 UTC
  • mfrom: (1333 staging)
  • mto: This revision was merged to the branch mainline in revision 1348.
  • Revision ID: mordred@inaugust.com-20100311182720-hd1h87y6cb1b1mp0
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
2
# Make sure our tables are actually present!
3
3
#
 
4
--disable_warnings
 
5
create schema if not exists data_dictionary;
 
6
--enable_warnings
 
7
 
4
8
select table_name
5
 
from information_schema.tables
6
 
where table_name like '%memcached%' ORDER BY table_name;
 
9
from data_dictionary.tables
 
10
where table_name like 'memcached%' ORDER BY table_name;
7
11
 
8
12
#
9
13
# verify the structure of these I_S tables.
10
14
#
11
15
 
12
 
desc information_schema.memcached_stats;
 
16
desc data_dictionary.memcached_stats;
13
17
 
14
 
desc information_schema.memcached_analysis;
 
18
desc data_dictionary.memcached_analysis;