~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Jay Pipes
  • Date: 2010-04-08 16:27:25 UTC
  • mfrom: (1405.6.10 replication-pairs)
  • mto: This revision was merged to the branch mainline in revision 1457.
  • Revision ID: jpipes@serialcoder-20100408162725-sugbgn38oxjqclq2
Merge trunk and replication-pairs with conflict resolution

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
show create table data_dictionary.innodb_table_definitions;
 
2
Table   Create Table
 
3
innodb_table_definitions        CREATE TABLE `innodb_table_definitions` (
 
4
  `table_name` varbinary(192) DEFAULT NULL,
 
5
  `message` blob,
 
6
  PRIMARY KEY (`table_name`) USING BTREE
 
7
) ENGINE=InnoDB
 
8
select * from data_dictionary.innodb_table_definitions;
 
9
table_name      message
 
10
use data_dictionary;
 
11
show tables like 'innodb%';
 
12
Tables_in_data_dictionary (innodb%)
 
13
innodb_table_definitions
 
14
use test;
 
15
create table t1 (a int primary key);
 
16
select table_name from data_dictionary.innodb_table_definitions;
 
17
table_name
 
18
test/t1
 
19
drop table t1;
 
20
select count(table_name) from data_dictionary.innodb_table_definitions;
 
21
count(table_name)
 
22
0