~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/delete.result

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-13 00:53:34 UTC
  • mto: (1126.9.2 captain-20090915-01)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: osullivan.padraig@gmail.com-20090913005334-6wio2sbjugskfbm3
Added calls to the connection start/end dtrace probes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
drop table t1;
53
53
CREATE TEMPORARY TABLE t1 (
54
54
bool     char(0) default NULL,
55
 
not_null varchar(20) NOT NULL default '',
 
55
not_null varchar(20) binary NOT NULL default '',
56
56
misc     integer not null,
57
57
PRIMARY KEY  (not_null)
58
58
) ENGINE=MyISAM;
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;