~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create_select_tmp.test

  • Committer: Stewart Smith
  • Author(s): Marko Mäkelä
  • Date: 2010-12-20 03:21:44 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2022.
  • Revision ID: stewart@flamingspork.com-20101220032144-7aqh2z403u7d7bdp
Merge Revision revid:marko.makela@oracle.com-20101104131215-pfxnpidlrzd4krg0 from MySQL InnoDB

Original revid:marko.makela@oracle.com-20101104131215-pfxnpidlrzd4krg0

Original Authors: Marko Mäkelä <marko.makela@oracle.com>
Original commit message:
row_ins_index_entry(): Note that only CREATE INDEX sets foreign=FALSE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
# binlog if it was a transactional table, it resulted in an
6
6
# inconsistency between binlog and the internal list of temp tables.
7
7
 
8
 
--disable_warnings
9
8
drop table if exists t1, t2;
10
 
--enable_warnings
11
 
CREATE TABLE t1 ( a int );
 
9
drop table if exists t1;
 
10
CREATE TABLE t1 (
 
11
  a int DEFAULT 0 NOT NULL
 
12
) ENGINE = InnoDB;
12
13
INSERT INTO t1 VALUES (1),(2),(1);
13
14
--error ER_DUP_ENTRY
14
15
CREATE TABLE t2 ( PRIMARY KEY (a) ) ENGINE=INNODB SELECT a FROM t1;
15
 
--error 1146
 
16
--error ER_NO_SUCH_TABLE
16
17
select * from t2;
17
18
--error ER_DUP_ENTRY
18
19
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=INNODB SELECT a FROM t1;
19
 
--error 1146
20
 
select * from t2;
21
 
--error ER_DUP_ENTRY
22
 
CREATE TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
23
 
--error 1146
24
 
select * from t2;
25
 
--error ER_DUP_ENTRY
26
 
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
27
 
--error 1146
 
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
28
29
select * from t2;
29
30
drop table t1;
30
31