~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create_select_tmp.test

Finished first pass at Protocol cleanup, still some things to remove but they are a bit more involved.

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
 
# This does not work for RBR yet.
9
 
--source include/have_binlog_format_mixed_or_statement.inc
10
 
 
11
 
--disable_warnings
12
8
drop table if exists t1, t2;
13
 
--enable_warnings
14
 
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;
15
13
INSERT INTO t1 VALUES (1),(2),(1);
16
14
--error ER_DUP_ENTRY
17
15
CREATE TABLE t2 ( PRIMARY KEY (a) ) ENGINE=INNODB SELECT a FROM t1;