~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create_select_tmp.test

  • Committer: Monty Taylor
  • Date: 2008-12-24 18:32:38 UTC
  • mto: This revision was merged to the branch mainline in revision 751.
  • Revision ID: mordred@inaugust.com-20081224183238-elbjlh886wzsulw4
Fixed create_select_tmp test.

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
8
drop table if exists t1, t2;
9
 
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;
10
13
INSERT INTO t1 VALUES (1),(2),(1);
11
14
--error ER_DUP_ENTRY
12
15
CREATE TABLE t2 ( PRIMARY KEY (a) ) ENGINE=INNODB SELECT a FROM t1;