~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/myisam.result

Merge trunk:

Show diffs side-by-side

added added

removed removed

Lines of Context:
1365
1365
  `v` varchar(10) DEFAULT NULL
1366
1366
) ENGINE=MyISAM
1367
1367
drop table t1;
1368
 
create TEMPORARY table t1 (v varchar(10), c char(10)) row_format=fixed;
 
1368
create TEMPORARY table t1 (v varchar(10), c char(10));
1369
1369
show create table t1;
1370
1370
Table   Create Table
1371
1371
t1      CREATE TEMPORARY TABLE `t1` (
1372
1372
  `v` varchar(10) DEFAULT NULL,
1373
1373
  `c` varchar(10) DEFAULT NULL
1374
 
) ENGINE=MyISAM ROW_FORMAT=FIXED
 
1374
) ENGINE=MyISAM
1375
1375
insert into t1 values('a','a'),('a ','a ');
1376
1376
select concat('*',v,'*',c,'*') from t1;
1377
1377
concat('*',v,'*',c,'*')