~drizzle-pbxt/drizzle/drizzle-pbxt-2

« back to all changes in this revision

Viewing changes to tests/r/create_select_tmp.result

  • Committer: Paul McCullagh
  • Date: 2009-11-10 14:18:39 UTC
  • mfrom: (1038.1.7 drizzle-pbxt-pre-merge)
  • Revision ID: paul.mccullagh@primebase.org-20091110141839-2j3k43b17ag6f605
Merged Drizzle trunk and PBXT 1.0.09

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
18
18
select * from t2;
19
19
ERROR 42S02: Table 'test.t2' doesn't exist
20
 
CREATE TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
 
20
CREATE TEMPORARY TABLE t2 ( PRIMARY KEY (a) ) ENGINE=MYISAM SELECT a FROM t1;
21
21
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
22
22
select * from t2;
23
23
ERROR 42S02: Table 'test.t2' doesn't exist