~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create_select_tmp.result

  • Committer: Lee Bieber
  • Date: 2010-11-14 23:15:42 UTC
  • mfrom: (1929.1.42 warning-stack-frame)
  • Revision ID: kalebral@gmail.com-20101114231542-fnnu6ydd2p17n582
Merge Monty - fix bug 672372: some functions use > 32k stack

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: Unknown table 'test.t2'
 
15
ERROR 42S02: Table 'test.t2' doesn't exist
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: 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 42S02: 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 42S02: Unknown table 'test.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
28
28
drop table t1;