~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/temp_table.result

Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
Warnings:
27
27
Note    1050    Table 't2' already exists
28
28
CREATE TEMPORARY TABLE t1 (a int not null, b char (10) not null);
29
 
ERROR 42S01: Table 'test.#t1' already exists
 
29
ERROR 42S01: Table 't1' already exists
30
30
ALTER TABLE t1 RENAME t2;
31
 
ERROR 42S01: Table 'test.#t2' already exists
 
31
ERROR 42S01: Table 't2' already exists
32
32
select * from t2;
33
33
a       b
34
34
4       e
112
112
DROP TEMPORARY TABLE t2, t1;
113
113
ERROR 42S02: Unknown table 't1'
114
114
SELECT * FROM t2;
115
 
ERROR 42S02: Unknown table 'test.t2'
 
115
ERROR 42S02: Table 'test.t2' doesn't exist
116
116
SELECT * FROM t1;
117
117
i
118
118
DROP TABLE t1;