~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_group.result

Merging Stewart's show create table patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
593
593
Table   Create Table
594
594
t1      CREATE TABLE `t1` (
595
595
  `a` varchar(1) DEFAULT NULL
596
 
) ENGINE=DEFAULT
 
596
) ENGINE=DEFAULT COLLATE = utf8_general_ci
597
597
create table t2 select max(a),min(a) from t1;
598
598
show create table t2;
599
599
Table   Create Table
600
600
t2      CREATE TABLE `t2` (
601
601
  `max(a)` varchar(1) DEFAULT NULL,
602
602
  `min(a)` varchar(1) DEFAULT NULL
603
 
) ENGINE=DEFAULT
 
603
) ENGINE=DEFAULT COLLATE = utf8_general_ci
604
604
drop table t2;
605
605
create table t2 select concat(a) from t1;
606
606
show create table t2;
607
607
Table   Create Table
608
608
t2      CREATE TABLE `t2` (
609
609
  `concat(a)` varchar(1) DEFAULT NULL
610
 
) ENGINE=DEFAULT
 
610
) ENGINE=DEFAULT COLLATE = utf8_general_ci
611
611
drop table t2,t1;
612
612
create table t1 (a int);
613
613
insert into t1 values (1);
679
679
Table   Create Table
680
680
t2      CREATE TABLE `t2` (
681
681
  `MAX(b)` datetime DEFAULT NULL
682
 
) ENGINE=DEFAULT
 
682
) ENGINE=DEFAULT COLLATE = utf8_general_ci
683
683
drop table t1, t2;
684
684
create table t1(f1 datetime);
685
685
insert into t1 values (now());
905
905
Table   Create Table
906
906
t1      CREATE TABLE `t1` (
907
907
  `variance(0)` double(8,4) DEFAULT NULL
908
 
) ENGINE=DEFAULT
 
908
) ENGINE=DEFAULT COLLATE = utf8_general_ci
909
909
drop table t1;
910
910
create table t1 select stddev(0);
911
911
show create table t1;
912
912
Table   Create Table
913
913
t1      CREATE TABLE `t1` (
914
914
  `stddev(0)` double(8,4) DEFAULT NULL
915
 
) ENGINE=DEFAULT
 
915
) ENGINE=DEFAULT COLLATE = utf8_general_ci
916
916
drop table t1;
917
917
create table bug22555 (i int primary key auto_increment, s1 int, s2 int, e decimal(30,10), o double);
918
918
insert into bug22555 (s1, s2, e, o) values (53, 78, 11.4276528, 6.828112), (17, 78, 5.916793, 1.8502951), (18, 76, 2.679231, 9.17975591), (31, 62, 6.07831, 0.1), (19, 41, 5.37463, 15.1), (83, 73, 14.567426, 7.959222), (92, 53, 6.10151, 13.1856852), (7, 12, 13.92272, 3.442007), (92, 35, 11.95358909, 6.01376678), (38, 84, 2.572, 7.904571);