~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/union.result

Merge trunk:

Show diffs side-by-side

added added

removed removed

Lines of Context:
1206
1206
select row_format from information_schema.TABLES where table_schema="test" and table_name="t2";
1207
1207
row_format
1208
1208
Compact
1209
 
alter table t2 ROW_FORMAT=fixed;
1210
 
Warnings:
1211
 
Warning 1478    InnoDB: assuming ROW_FORMAT=COMPACT.
1212
1209
show create table t2;
1213
1210
Table   Create Table
1214
1211
t2      CREATE TABLE `t2` (
1215
1212
  `a` varchar(5) DEFAULT NULL
1216
 
) ENGINE=DEFAULT ROW_FORMAT=FIXED
 
1213
) ENGINE=DEFAULT
1217
1214
drop table t1,t2;
1218
1215
CREATE TABLE t1 (a mediumtext);
1219
1216
CREATE TABLE t2 (b varchar(20));