~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/alter_table.result

First pass on cleanup of Stewart's patch, plus re-engineer to make it work a
bit more with the current system. Engines approve key/pair.

Show diffs side-by-side

added added

removed removed

Lines of Context:
527
527
t1      CREATE TABLE `t1` (
528
528
  `a` int DEFAULT NULL,
529
529
  KEY `i1` (`a`)
530
 
) ENGINE=DEFAULT ROW_FORMAT=COMPACT
 
530
) ENGINE=DEFAULT ROW_FORMAT='COMPACT'
531
531
DROP INDEX i1 ON t1;
532
532
SHOW CREATE TABLE t1;
533
533
Table   Create Table
534
534
t1      CREATE TABLE `t1` (
535
535
  `a` int DEFAULT NULL
536
 
) ENGINE=DEFAULT ROW_FORMAT=COMPACT
 
536
) ENGINE=DEFAULT ROW_FORMAT='COMPACT'
537
537
DROP TABLE t1;
538
538
DROP TABLE IF EXISTS bug24219;
539
539
DROP TABLE IF EXISTS bug24219_2;