~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/temp_table.test

Remove dead memset call.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
create TEMPORARY TABLE IF NOT EXISTS t2 (a int) engine=MEMORY;
23
23
 
24
24
# This should give errors
25
 
--error 1050
 
25
--error ER_TABLE_EXISTS_ERROR
26
26
CREATE TEMPORARY TABLE t1 (a int not null, b char (10) not null);
27
 
--error 1050
 
27
--error ER_TABLE_EXISTS_ERROR
28
28
ALTER TABLE t1 RENAME t2;
29
29
 
30
30
select * from t2;
124
124
CREATE TABLE t1 (i INT);
125
125
CREATE TEMPORARY TABLE t2 (i INT);
126
126
 
127
 
--error 1051
 
127
--error ER_BAD_TABLE_ERROR
128
128
DROP TEMPORARY TABLE t2, t1;
129
129
 
130
130
# Table t2 should have been dropped.
131
 
--error 1146
 
131
--error ER_NO_SUCH_TABLE
132
132
SELECT * FROM t2;
133
133
# But table t1 should still be there.
134
134
SELECT * FROM t1;