~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to tests/t/drizzledump.test

  • Committer: Padraig O'Sullivan
  • Date: 2010-03-15 14:05:26 UTC
  • mfrom: (1237.9.99 staging)
  • Revision ID: osullivan.padraig@gmail.com-20100315140526-opbgwdwn6tfecdkq
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
620
620
--echo # BUG#13926: --order-by-primary fails if PKEY contains quote character
621
621
--echo #
622
622
 
623
 
--disable_warnings
624
 
DROP TABLE IF EXISTS `t1`;
625
 
CREATE TABLE `t1` (
626
 
  `a b` INT,
627
 
  `c"d` INT,
628
 
  `e``f` INT,
629
 
  PRIMARY KEY (`a b`, `c"d`, `e``f`)
630
 
);
631
 
insert into t1 values (0815, 4711, 2006);
632
 
 
633
 
--exec $DRIZZLE_DUMP --skip-comments --compatible=ansi --order-by-primary test t1
634
 
--exec $DRIZZLE_DUMP --skip-comments --order-by-primary test t1
635
 
DROP TABLE `t1`;
636
 
--enable_warnings
 
623
#--disable_warnings
 
624
#DROP TABLE IF EXISTS `t1`;
 
625
#CREATE TABLE `t1` (
 
626
#  `a b` INT,
 
627
#  `c"d` INT,
 
628
#  `e``f` INT,
 
629
#  PRIMARY KEY (`a b`, `c"d`, `e``f`)
 
630
#);
 
631
#insert into t1 values (0815, 4711, 2006);
 
632
#
 
633
#--exec $DRIZZLE_DUMP --skip-comments --compatible=ansi --order-by-primary test t1
 
634
#--exec $DRIZZLE_DUMP --skip-comments --order-by-primary test t1
 
635
#DROP TABLE `t1`;
 
636
#--enable_warnings
637
637
 
638
638
--echo End of 4.1 tests
639
639