~vkolesnikov/pbxt/pbxt-preload-test-bug

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/r/func_group.result

  • Committer: paul-mccullagh
  • Date: 2008-03-10 11:36:34 UTC
  • Revision ID: paul-mccullagh-417ebf175a9c8ee6e5b3777d9e2398e1fb197391
Implemented full durability

Show diffs side-by-side

added added

removed removed

Lines of Context:
614
614
select max(t1.a3), min(t2.a2) from t1, t2 where t1.a2 = 2 and t1.a3 < 'MIN' and t2.a3 > 'CA';
615
615
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
616
616
1       SIMPLE  t2      range   k1      k1      3       NULL    1       Using where; Using index
617
 
1       SIMPLE  t1      range   k1      k1      7       NULL    1       Using where; Using index
 
617
1       SIMPLE  t1      range   k1      k1      7       NULL    1       Using where; Using index; Using join buffer
618
618
explain
619
619
select min(a4 - 0.01) from t1;
620
620
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
651
651
select concat(min(t1.a1),min(t2.a4)) from t1, t2 where t2.a4 <> 'AME';
652
652
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
653
653
1       SIMPLE  t2      index   k2      k2      4       NULL    7       Using where; Using index
654
 
1       SIMPLE  t1      index   NULL    PRIMARY 3       NULL    15      Using index
 
654
1       SIMPLE  t1      index   NULL    PRIMARY 3       NULL    15      Using index; Using join buffer
655
655
drop table t1, t2;
656
656
create table t1 (a char(10));
657
657
insert into t1 values ('a'),('b'),('c');