~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/alter_table.test

  • Committer: Brian Aker
  • Date: 2009-11-20 19:07:14 UTC
  • mfrom: (1223.1.5 push)
  • Revision ID: brian@gaz-20091120190714-dhr3lgqxrt7dq1fc
Collected Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
383
383
drop table t1;
384
384
 
385
385
#
386
 
# BUG#23404 - ROW_FORMAT=FIXED option is lost is an index is added to the
 
386
# BUG#23404 - ROW_FORMAT=COMPACT option is lost is an index is added to the
387
387
# table
388
388
#
389
 
CREATE TABLE t1(a INT) ROW_FORMAT=FIXED;
 
389
CREATE TABLE t1(a INT) ROW_FORMAT=COMPACT;
390
390
CREATE INDEX i1 ON t1(a);
391
391
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
392
392
SHOW CREATE TABLE t1;