~stewart/drizzle/rename-embedded-innodb-to-haildb

« back to all changes in this revision

Viewing changes to plugin/haildb/test-suite-dir/haildb/tests/t/basic_innodb_table_proto_table.test

  • Committer: Stewart Smith
  • Date: 2010-09-23 06:31:07 UTC
  • Revision ID: stewart@flamingspork.com-20100923063107-1orxds6mtffwm37a
rename remaining things from embedded_innodb/innodb to HailDB. The only things left are now the plugin name and what name the engine appears under (so it's still CREATE TABLE.. ENGINE=INNODB and options are --innodb.foo)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
show create table data_dictionary.innodb_table_definitions;
2
 
select * from data_dictionary.innodb_table_definitions;
 
1
show create table data_dictionary.haildb_table_definitions;
 
2
select * from data_dictionary.haildb_table_definitions;
3
3
use data_dictionary;
4
 
show tables like 'innodb%';
 
4
show tables like 'haildb%';
5
5
use test;
6
6
create table t1 (a int primary key);
7
 
select table_name from data_dictionary.innodb_table_definitions;
 
7
select table_name from data_dictionary.haildb_table_definitions;
8
8
drop table t1;
9
 
select count(table_name) from data_dictionary.innodb_table_definitions;
 
9
select count(table_name) from data_dictionary.haildb_table_definitions;
10
10