~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mix2_myisam.result

Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
1623
1623
  `v` varchar(10) DEFAULT NULL
1624
1624
) ENGINE=MyISAM
1625
1625
drop table t1;
1626
 
create TEMPORARY table t1 (v varchar(10), c char(10)) row_format=fixed;
 
1626
create TEMPORARY table t1 (v varchar(10), c char(10));
1627
1627
show create table t1;
1628
1628
Table   Create Table
1629
1629
t1      CREATE TEMPORARY TABLE `t1` (
1630
1630
  `v` varchar(10) DEFAULT NULL,
1631
1631
  `c` varchar(10) DEFAULT NULL
1632
 
) ENGINE=MyISAM ROW_FORMAT=FIXED
 
1632
) ENGINE=MyISAM
1633
1633
insert into t1 values('a','a'),('a ','a ');
1634
1634
select concat('*',v,'*',c,'*') from t1;
1635
1635
concat('*',v,'*',c,'*')