~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/distinct.test

  • Committer: Brian Aker
  • Date: 2010-02-15 18:29:31 UTC
  • mto: (1273.13.68 build)
  • mto: This revision was merged to the branch mainline in revision 1303.
  • Revision ID: brian@gaz-20100215182931-ooy48h72plspoehy
More removal of show code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
explain select distinct t1.a from t1,t3 where t1.a=t3.a;
87
87
#flush status;
88
88
select distinct t1.a from t1,t3 where t1.a=t3.a;
89
 
#show status like 'Handler%';
90
 
#flush status;
 
89
--replace_column 2 #
 
90
show status like 'Handler%';
 
91
flush status;
91
92
select distinct 1 from t1,t3 where t1.a=t3.a;
92
 
#show status like 'Handler%';
 
93
--replace_column 2 #
 
94
show status like 'Handler%';
93
95
 
94
96
explain SELECT distinct t1.a from t1;
95
97
explain SELECT distinct t1.a from t1 order by a desc;