~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/temp_table.result

  • Committer: Brian Aker
  • Date: 2009-06-08 02:42:24 UTC
  • mfrom: (1054.1.6 merge)
  • Revision ID: brian@gaz-20090608024224-zlff1bpq62r8m5gy
Removal of LOCK TABLES.

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;