~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/delete.result

  • Committer: Brian Aker
  • Date: 2009-12-03 01:17:53 UTC
  • mto: (1237.3.2 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: brian@gaz-20091203011753-159h2no5m5c5dt9b
Small cleanups, did in MERGE table only engine flag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
219
219
CREATE TABLE db2.t2 AS SELECT * FROM db2.t1;
220
220
CREATE TABLE t1 AS SELECT * FROM db2.t2;
221
221
CREATE TABLE t2 AS SELECT * FROM t1;
222
 
DROP DATABASE db1;
223
 
DROP DATABASE db2;
224
 
DROP TABLE t1, t2;