~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/union.result

  • Committer: Brian Aker
  • Date: 2010-03-02 07:03:12 UTC
  • mfrom: (1309.2.10 drizzle-build)
  • Revision ID: brian@gaz-20100302070312-u8xyk09u2970pgzp
Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1102
1102
select f2,a1 from (select a1, CAST('2004-12-31' AS DATE) f2 from t1) a
1103
1103
order by f2, a1;
1104
1104
show columns from t2;
1105
 
Field   Type    Null    Default Default is NULL On Update
 
1105
Field   Type    Null    Default Default_is_NULL On_Update
1106
1106
f2      DATE    TRUE            TRUE    
1107
1107
a1      INTEGER TRUE            TRUE    
1108
1108
drop table t1, t2;
1128
1128
)
1129
1129
order by sdate;
1130
1130
show columns from t4;
1131
 
Field   Type    Null    Default Default is NULL On Update
 
1131
Field   Type    Null    Default Default_is_NULL On_Update
1132
1132
sdate   DATE    TRUE            TRUE    
1133
1133
drop table t1, t2, t3, t4;
1134
1134
create table t1 (a int not null, b char (10) not null);