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

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/r/group_by.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:
537
537
explain select t1.a,t2.b from t1,t2 where t1.a=t2.a group by t1.a,t2.b;
538
538
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
539
539
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    6       Using temporary; Using filesort
540
 
1       SIMPLE  t2      ALL     a       NULL    NULL    NULL    4       Using where
 
540
1       SIMPLE  t2      ALL     a       NULL    NULL    NULL    4       Using where; Using join buffer
541
541
explain select t1.a,t2.b from t1,t2 where t1.a=t2.a group by t1.a,t2.b ORDER BY NULL;
542
542
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
543
543
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    6       Using temporary
544
 
1       SIMPLE  t2      ALL     a       NULL    NULL    NULL    4       Using where
 
544
1       SIMPLE  t2      ALL     a       NULL    NULL    NULL    4       Using where; Using join buffer
545
545
drop table t1,t2;
546
546
create table t1 (a int, b int);
547
547
insert into t1 values (1, 4),(10, 40),(1, 4),(10, 43),(1, 4),(10, 41),(1, 4),(10, 43),(1, 4);