~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/t/732962.test

  • Committer: Olaf van der Spek
  • Date: 2011-03-12 15:07:12 UTC
  • mfrom: (2231 staging)
  • mto: This revision was merged to the branch mainline in revision 2233.
  • Revision ID: olafvdspek@gmail.com-20110312150712-i4k1819u2523lggb
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--disable_warnings
 
2
DROP TABLE IF EXISTS t1, t2;
 
3
--enable_warnings
 
4
 
 
5
CREATE TABLE t1 (a int);
 
6
CREATE TABLE t2 (a int) REPLICATE=FALSE;
 
7
--exec $DRIZZLE_DUMP --compact test t1 t2
 
8
DROP TABLE t1, t2;