~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create_select_tmp.result

Merge in decomplication of our error system when reading through the table
message.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
CREATE TABLE t2 ( PRIMARY KEY (a) ) ENGINE=INNODB SELECT a FROM t1;
13
13
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
14
14
select * from t2;
15
 
ERROR 42S02: Table 'test.t2' doesn't exist
 
15
ERROR HY000: Unknown table 'test.t2'
16
16
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=INNODB SELECT a FROM t1;
17
17
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
18
18
select * from t2;
19
 
ERROR 42S02: Table 'test.t2' doesn't exist
20
 
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
21
 
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
22
 
select * from t2;
23
 
ERROR 42S02: Table 'test.t2' doesn't exist
24
 
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
25
 
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
26
 
select * from t2;
27
 
ERROR 42S02: Table 'test.t2' doesn't exist
 
19
ERROR HY000: Unknown table 'test.t2'
 
20
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
 
21
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
 
22
select * from t2;
 
23
ERROR HY000: Unknown table 'test.t2'
 
24
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
 
25
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
 
26
select * from t2;
 
27
ERROR HY000: Unknown table 'test.t2'
28
28
drop table t1;