~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create.result

  • Committer: Brian Aker
  • Date: 2009-06-16 00:53:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1094.
  • Revision ID: brian@gaz-20090616005322-w0ode4jul9z8s2y9
Partial fix for tests for tmp

Show diffs side-by-side

added added

removed removed

Lines of Context:
656
656
  `a2` int DEFAULT NULL
657
657
) ENGINE=DEFAULT
658
658
drop table t1, t2;
659
 
create table t1 (i int) engine=myisam max_rows=100000000000;
 
659
create TEMPORARY table t1 (i int) engine=myisam max_rows=100000000000;
660
660
show create table t1;
661
661
Table   Create Table
662
 
t1      CREATE TABLE `t1` (
 
662
t1      CREATE TEMPORARY TABLE `t1` (
663
663
  `i` int DEFAULT NULL
664
664
) ENGINE=MyISAM MAX_ROWS=100000000000
665
665
alter table t1 max_rows=100;
666
666
show create table t1;
667
667
Table   Create Table
668
 
t1      CREATE TABLE `t1` (
 
668
t1      CREATE TEMPORARY TABLE `t1` (
669
669
  `i` int DEFAULT NULL
670
670
) ENGINE=MyISAM MAX_ROWS=100
671
671
alter table t1 max_rows=100000000000;
672
672
show create table t1;
673
673
Table   Create Table
674
 
t1      CREATE TABLE `t1` (
 
674
t1      CREATE TEMPORARY TABLE `t1` (
675
675
  `i` int DEFAULT NULL
676
676
) ENGINE=MyISAM MAX_ROWS=100000000000
677
677
drop table t1;