~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/group_min_max_innodb.result

  • Committer: Monty Taylor
  • Date: 2008-09-13 20:24:20 UTC
  • mfrom: (383.1.35 drizzle)
  • Revision ID: monty@inaugust.com-20080913202420-lkj76ewbabl8ljvp
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
alter table t1 drop primary key, add primary key (f2, f1);
66
66
explain select distinct f1 a, f1 b from t1;
67
67
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
68
 
1       SIMPLE  t1      index   NULL    PRIMARY 7       NULL    4       Using index; Using temporary
 
68
1       SIMPLE  t1      index   NULL    PRIMARY 10      NULL    4       Using index; Using temporary
69
69
explain select distinct f1, f2 from t1;
70
70
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
71
 
1       SIMPLE  t1      range   NULL    PRIMARY 7       NULL    3       Using index for group-by; Using temporary
 
71
1       SIMPLE  t1      range   NULL    PRIMARY 10      NULL    3       Using index for group-by; Using temporary
72
72
drop table t1;