~dshrews/drizzle/bug656474

« back to all changes in this revision

Viewing changes to tests/t/drizzledump.test

  • Committer: lbieber
  • Date: 2010-10-02 15:03:20 UTC
  • mfrom: (1808.1.3 build)
  • Revision ID: lbieber@orisndriz08-20101002150320-b4h2za7uf98juxql
Merge Andrew - fix bug 652645 - Bad error handling with Drizzledump connect
Merge Andrew - fix bug 652228 - drizzledump not dumping auto-inc when connecting to drizzle servers
Merge Andrew - fix bug 649844 - Clean up and fix some drizzledump options along with some documentation fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
INSERT INTO t1 VALUES (1),(2),(3);
75
75
INSERT INTO t1 VALUES (4),(5),(6);
76
76
--exec $DRIZZLE_DUMP --skip-comments --insert-ignore test t1
77
 
--exec $DRIZZLE_DUMP --skip-comments --insert-ignore --delayed-insert test t1
78
77
DROP TABLE t1;
79
78
 
80
79
--echo #
413
412
 F_6faa8040da20ef399b63a72d0e4ab575 int,
414
413
 F_fe73f687e5bc5280214e0486b273a5f9 int);
415
414
insert into t1 (F_8d3bba7425e7c98c50f52ca1b52d3735) values (1);
416
 
--exec $DRIZZLE_DUMP --skip-comments -c test
 
415
--exec $DRIZZLE_DUMP --skip-comments test
417
416
drop table t1;
418
417
 
419
418
--echo #
541
540
create table t1(a int);
542
541
create table t2(a int);
543
542
create table t3(a int);
544
 
--error 2
545
543
--exec $DRIZZLE_DUMP --skip-comments --force --no-data test t3 t1 non_existing t2
546
544
drop table t1, t2, t3;
547
545
 
652
650
create database `test-database`;
653
651
use `test-database`;
654
652
create table test (a int);
655
 
--exec $DRIZZLE_DUMP --compact --opt test-database
 
653
--exec $DRIZZLE_DUMP --compact test-database
656
654
drop database `test-database`;
657
655
use test;
658
656