~stewart/drizzle/embedded-innodb-create-table-with-index

« back to all changes in this revision

Viewing changes to tests/r/func_group.result

  • Committer: Stewart Smith
  • Date: 2010-03-11 01:15:57 UTC
  • mfrom: (1319.1.29)
  • Revision ID: stewart@flamingspork.com-20100311011557-49r2ye69bqh4abti
Merged embedded-innodb-rnd-read into embedded-innodb-create-table-with-index.

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(