~drizzle-developers/ubuntu/natty/drizzle/natty

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/test-suite-dir/embedded_innodb/tests/r/basic_innodb_table_proto_table.result

  • Committer: Monty Taylor
  • Date: 2010-09-09 18:35:25 UTC
  • mto: (1308.1.63 trunk)
  • mto: This revision was merged to the branch mainline in revision 1312.
  • Revision ID: mordred@inaugust.com-20100909183525-6l72i1glofd3qe5m
Tags: upstream-2010.08.1742
ImportĀ upstreamĀ versionĀ 2010.08.1742

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
show create table data_dictionary.innodb_table_definitions;
2
2
Table   Create Table
3
3
innodb_table_definitions        CREATE TABLE `innodb_table_definitions` (
4
 
  `table_name` varbinary(192) DEFAULT NULL,
 
4
  `table_name` varbinary(192),
5
5
  `message` blob,
6
6
  PRIMARY KEY (`table_name`) USING BTREE
7
 
) ENGINE=InnoDB
 
7
) ENGINE=InnoDB COLLATE = binary
8
8
select * from data_dictionary.innodb_table_definitions;
9
9
table_name      message
10
10
use data_dictionary;