~posulliv/drizzle/schema-less

« back to all changes in this revision

Viewing changes to tests/r/func_group.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:
685
685
insert into t1 values (now());
686
686
create table t2 select f2 from (select max(now()) f2 from t1) a;
687
687
show columns from t2;
688
 
Field   Type    Null    Default Default is NULL On Update
 
688
Field   Type    Null    Default Default_is_NULL On_Update
689
689
f2      DATETIME        TRUE            TRUE    
690
690
drop table t2;
691
691
create table t2 select f2 from (select now() f2 from t1) a;
692
692
show columns from t2;
693
 
Field   Type    Null    Default Default is NULL On Update
 
693
Field   Type    Null    Default Default_is_NULL On_Update
694
694
f2      DATETIME        TRUE            TRUE    
695
695
drop table t2, t1;
696
696
CREATE TABLE t1(