~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create_select_column_order.test

  • 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
--error 1364
 
4
create table if not exists t1 select 2;
 
5
select * from t1;
 
6
drop table t1;
 
7
 
 
8
create table t1 select 1,2,3;
 
9
--error 1364
 
10
create table if not exists t1 select 1,2;
 
11
--error 1364
 
12
create table if not exists t1 select 1;
 
13
 
 
14
select * from t1;
 
15
 
 
16
drop table t1;
 
17
 
 
18
 
 
19
create table t1 (a int not null primary key auto_increment, b int, c int, d int);
 
20
create table if not exists t1 select 1,2;
 
21
select * from t1;
 
22
drop table t1;