~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/myisam.result

  • Committer: Brian Aker
  • Date: 2009-11-19 18:26:26 UTC
  • mto: (1223.1.4 push) (1226.1.2 push)
  • mto: This revision was merged to the branch mainline in revision 1224.
  • Revision ID: brian@gaz-20091119182626-5w98h5vnf1819sco
Fix engines to not rely on HA_CREATE_INFO.

There were a number of test cases where Innodb was accepting the wrong
ROW_FORMAT and just tossing warnings. It would cause the DFE to then be
different then the actual table definition.

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,'*')