~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

Show diffs side-by-side

added added

removed removed

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