~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/drizzledump.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:
36
36
--echo # Bug #2634
37
37
--echo #
38
38
 
39
 
CREATE TABLE t1 (a int) ENGINE=MYISAM;
 
39
CREATE TABLE t1 (a int);
40
40
INSERT INTO t1 VALUES (1), (2);
41
41
--exec $DRIZZLE_DUMP --skip-comments --compatible=mysql40 test t1
42
42
--exec $DRIZZLE_DUMP --skip-comments --compatible=mysql323 test t1
627
627
  `c"d` INT,
628
628
  `e``f` INT,
629
629
  PRIMARY KEY (`a b`, `c"d`, `e``f`)
630
 
) ENGINE=MyISAM;
 
630
);
631
631
insert into t1 values (0815, 4711, 2006);
632
632
 
633
633
--exec $DRIZZLE_DUMP --skip-comments --compatible=ansi --order-by-primary test t1