~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create_select_tmp.test

  • Committer: Patrick Crews
  • Date: 2010-09-14 20:21:03 UTC
  • mto: (1771.1.1 pcrews)
  • mto: This revision was merged to the branch mainline in revision 1772.
  • Revision ID: gleebix@gmail.com-20100914202103-1db2n0bshzafep19
Moved transaction_log tests into updated non-publisher-based tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
INSERT INTO t1 VALUES (1),(2),(1);
14
14
--error ER_DUP_ENTRY
15
15
CREATE TABLE t2 ( PRIMARY KEY (a) ) ENGINE=INNODB SELECT a FROM t1;
16
 
--error ER_TABLE_UNKNOWN
 
16
--error ER_NO_SUCH_TABLE
17
17
select * from t2;
18
18
--error ER_DUP_ENTRY
19
19
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=INNODB SELECT a FROM t1;
20
 
--error ER_TABLE_UNKNOWN
21
 
select * from t2;
22
 
--error ER_DUP_ENTRY
23
 
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
24
 
--error ER_TABLE_UNKNOWN
25
 
select * from t2;
26
 
--error ER_DUP_ENTRY
27
 
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
28
 
--error ER_TABLE_UNKNOWN
 
20
--error ER_NO_SUCH_TABLE
 
21
select * from t2;
 
22
--error ER_DUP_ENTRY
 
23
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
 
24
--error ER_NO_SUCH_TABLE
 
25
select * from t2;
 
26
--error ER_DUP_ENTRY
 
27
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
 
28
--error ER_NO_SUCH_TABLE
29
29
select * from t2;
30
30
drop table t1;
31
31