~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create.result

  • Committer: Brian Aker
  • Date: 2011-02-04 10:18:35 UTC
  • mfrom: (2143.1.4 drizzle-build)
  • Revision ID: brian@tangent.org-20110204101835-j23pv0febg9p0a2p
Merge of all local trees.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
create temporary table t1 (a int not null auto_increment,primary key (a)) engine=MEMORY;
20
20
drop table t1;
21
21
create temporary table t2 engine=MEMORY select * from t1;
22
 
ERROR 42S02: Table 'test.t1' doesn't exist
 
22
ERROR 42S02: Unknown table 'test.t1'
23
23
create table t2 select auto+1 from t1;
24
 
ERROR 42S02: Table 'test.t1' doesn't exist
 
24
ERROR 42S02: Unknown table 'test.t1'
25
25
drop table if exists t1,t2;
26
26
Warnings:
27
27
Note    1051    Unknown table 't1'
167
167
CREATE TABLE t2 (primary key(a)) SELECT * FROM t1;
168
168
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
169
169
SELECT * from t2;
170
 
ERROR 42S02: Table 'test.t2' doesn't exist
 
170
ERROR 42S02: Unknown table 'test.t2'
171
171
DROP TABLE t1;
172
172
DROP TABLE IF EXISTS t2;
173
173
Warnings:
368
368
create table non_existing_database.t1 like t1;
369
369
ERROR 42000: Unknown schema 'non_existing_database'
370
370
create table t4 like non_existing_table;
371
 
ERROR HY000: Unknown table 'test.non_existing_table'
 
371
ERROR 42S02: Unknown table 'test.non_existing_table'
372
372
create temporary table t3 like t1;
373
373
ERROR 42S01: Table 'test.#t3' already exists
374
374
drop table t1, t2, t3;
682
682
) ENGINE=DEFAULT COLLATE = utf8_general_ci
683
683
drop table t1, t2;
684
684
create table t1 select * from t2;
685
 
ERROR 42S02: Table 'test.t2' doesn't exist
 
685
ERROR 42S02: Unknown table 'test.t2'
686
686
create table t1 select * from t1;
687
687
ERROR HY000: You can't specify target table 't1' for update in FROM clause
688
688
create table t1 select coalesce('a' collate utf8_swedish_ci,'b' collate utf8_bin);
710
710
1
711
711
drop temporary table t1;
712
712
select * from t1;
713
 
ERROR 42S02: Table 'test.t1' doesn't exist
 
713
ERROR 42S02: Unknown table 'test.t1'
714
714
drop table t1;
715
715
ERROR 42S02: Unknown table 't1'
716
716
create table t1 (upgrade int);