~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/temp_table.result

  • Committer: Nathan Williams
  • Date: 2009-06-13 21:21:13 UTC
  • mfrom: (1062 staging)
  • mto: This revision was merged to the branch mainline in revision 1063.
  • Revision ID: nathanlws@gmail.com-20090613212113-liz01ojh1wxutgqx
Merged trunk and resolved conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
bar     2
108
108
foo     1
109
109
drop table t1, t2;
110
 
DROP TABLE IF EXISTS t1;
111
 
CREATE TABLE t1 (i INT);
112
 
LOCK TABLE t1 WRITE;
113
 
CREATE TEMPORARY TABLE t1 (i INT);
114
 
The following command should not block
115
 
DROP TEMPORARY TABLE t1;
116
 
DROP TABLE t1;
117
110
CREATE TABLE t1 (i INT);
118
111
CREATE TEMPORARY TABLE t2 (i INT);
119
112
DROP TEMPORARY TABLE t2, t1;