~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/haildb/tests/r/basic_innodb_table_proto_table.result

  • Committer: Olaf van der Spek
  • Date: 2011-08-04 08:13:04 UTC
  • mfrom: (2384 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2385.
  • Revision ID: olafvdspek@gmail.com-20110804081304-rlejjpvoos17bjdf
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
show create table data_dictionary.haildb_table_definitions;
2
 
Table   Create Table
3
 
haildb_table_definitions        CREATE TABLE `haildb_table_definitions` (
4
 
  `table_name` VARBINARY(192),
5
 
  `message` BLOB,
6
 
  PRIMARY KEY (`table_name`) USING BTREE
7
 
) ENGINE=InnoDB COLLATE = binary
8
 
select * from data_dictionary.haildb_table_definitions;
9
 
table_name      message
10
 
use data_dictionary;
11
 
show tables like 'haildb%';
12
 
Tables_in_data_dictionary (haildb%)
13
 
HAILDB_CONFIGURATION
14
 
HAILDB_STATUS
15
 
HAILDB_SYS_COLUMNS
16
 
HAILDB_SYS_FIELDS
17
 
HAILDB_SYS_FOREIGN
18
 
HAILDB_SYS_FOREIGN_COLS
19
 
HAILDB_SYS_INDEXES
20
 
HAILDB_SYS_TABLES
21
 
haildb_table_definitions
22
 
use test;
23
 
create table t1 (a int primary key);
24
 
select table_name from data_dictionary.haildb_table_definitions;
25
 
table_name
26
 
test/t1
27
 
drop table t1;
28
 
select count(table_name) from data_dictionary.haildb_table_definitions;
29
 
count(table_name)
30
 
0