~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/innodb_mysql.result

First pass on cleanup of Stewart's patch, plus re-engineer to make it work a
bit more with the current system. Engines approve key/pair.

Show diffs side-by-side

added added

removed removed

Lines of Context:
484
484
4       a       2
485
485
drop table t1;
486
486
create table t1(a int) engine=innodb;
487
 
alter table t1 comment '123';
 
487
alter table t1 comment='123';
488
488
show create table t1;
489
489
Table   Create Table
490
490
t1      CREATE TABLE `t1` (
1135
1135
FROM data_dictionary.TABLES
1136
1136
WHERE table_schema = DATABASE() AND table_name = 't1';
1137
1137
table_schema    table_name      row_format
1138
 
test    t1      COMPACT
 
1138
test    t1      DEFAULT
1139
1139
 
1140
1140
# - change ROW_FORMAT and check;
1141
1141
 
1145
1145
FROM data_dictionary.TABLES
1146
1146
WHERE table_schema = DATABASE() AND table_name = 't1';
1147
1147
table_schema    table_name      row_format
1148
 
test    t1      REDUNDANT
 
1148
test    t1      DEFAULT
1149
1149
 
1150
1150
# - that's it, cleanup.
1151
1151