~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create.test

  • Committer: Brian Aker
  • Date: 2009-08-17 21:04:20 UTC
  • mto: (1117.1.9 merge)
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: brian@gaz-20090817210420-y7ag18gmgcy2iqy5
Remove options which are just for internal optimizations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
644
644
 
645
645
 
646
646
#
647
 
# Bug #14155: Maximum value of MAX_ROWS handled incorrectly on 64-bit
648
 
# platforms
649
 
#
650
 
create TEMPORARY table t1 (i int) engine=myisam max_rows=100000000000;
651
 
show create table t1;
652
 
alter table t1 max_rows=100;
653
 
show create table t1;
654
 
alter table t1 max_rows=100000000000;
655
 
show create table t1;
656
 
drop table t1;
657
 
 
658
 
 
659
 
#
660
647
# Tests for errors happening at various stages of CREATE TABLES ... SELECT
661
648
#
662
649
# (Also checks that it behaves atomically in the sense that in case