~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create_select_column_order.result

  • Committer: Brian Aker
  • Date: 2009-05-14 06:54:20 UTC
  • mfrom: (1014.2.4 mordred)
  • Revision ID: brian@gaz-20090514065420-ocpqu1hs3upo8nu7
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create table t1 (a int not null, b int, primary key (a));
 
2
insert into t1 values (1,1);
 
3
create table if not exists t1 select 2;
 
4
ERROR HY000: Field 'a' doesn't have a default value
 
5
select * from t1;
 
6
a       b
 
7
1       1
 
8
drop table t1;
 
9
create table t1 select 1,2,3;
 
10
create table if not exists t1 select 1,2;
 
11
ERROR HY000: Field '1' doesn't have a default value
 
12
create table if not exists t1 select 1;
 
13
ERROR HY000: Field '1' doesn't have a default value
 
14
select * from t1;
 
15
1       2       3
 
16
1       2       3
 
17
drop table t1;
 
18
create table t1 (a int not null primary key auto_increment, b int, c int, d int);
 
19
create table if not exists t1 select 1,2;
 
20
Warnings:
 
21
Note    1050    Table 't1' already exists
 
22
select * from t1;
 
23
a       b       c       d
 
24
1       NULL    1       2
 
25
drop table t1;