~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_group_innodb.result

Reverted 1103

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
select min(7);
77
77
min(7)
78
78
7
79
 
explain select min(7) from t2i cross join t1i;
 
79
explain select min(7) from t2i join t1i;
80
80
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
81
81
1       SIMPLE  t2i     ALL     NULL    NULL    NULL    NULL    1       
82
82
1       SIMPLE  t1i     ALL     NULL    NULL    NULL    NULL    1       Using join buffer
83
 
select min(7) from t2i cross join t1i;
 
83
select min(7) from t2i join t1i;
84
84
min(7)
85
85
NULL
86
86
select max(a) from t1i;
92
92
select max(7);
93
93
max(7)
94
94
7
95
 
explain select max(7) from t2i cross join t1i;
 
95
explain select max(7) from t2i join t1i;
96
96
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
97
97
1       SIMPLE  t2i     ALL     NULL    NULL    NULL    NULL    1       
98
98
1       SIMPLE  t1i     ALL     NULL    NULL    NULL    NULL    1       Using join buffer
99
 
select max(7) from t2i cross join t1i;
 
99
select max(7) from t2i join t1i;
100
100
max(7)
101
101
NULL
102
102
select 1, min(a) from t1i where a=99;