~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create.test

  • 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:
647
647
# Bug #14155: Maximum value of MAX_ROWS handled incorrectly on 64-bit
648
648
# platforms
649
649
#
650
 
create table t1 (i int) engine=myisam max_rows=100000000000;
 
650
create TEMPORARY table t1 (i int) engine=myisam max_rows=100000000000;
651
651
show create table t1;
652
652
alter table t1 max_rows=100;
653
653
show create table t1;