~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/alter_table.result

  • Committer: Brian Aker
  • Date: 2008-10-28 08:36:02 UTC
  • mfrom: (520.4.13 merge-innodb-plugin)
  • Revision ID: brian@tangent.org-20081028083602-0p3zzlhlxr5q2sqo
Merging Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
581
581
use test;
582
582
drop table t1;
583
583
CREATE TABLE t1(a INT) ROW_FORMAT=FIXED;
 
584
Warnings:
 
585
Warning 1478    InnoDB: assuming ROW_FORMAT=COMPACT.
584
586
CREATE INDEX i1 ON t1(a);
585
587
SHOW CREATE TABLE t1;
586
588
Table   Create Table