~hartmut-php/drizzle/drizzle-bug622458

« back to all changes in this revision

Viewing changes to tests/t/group_by.test

  • Committer: Brian Aker
  • Date: 2010-08-19 06:39:23 UTC
  • mfrom: (1718.1.2 drizzle)
  • Revision ID: brian@tangent.org-20100819063923-2e4ydo8uyby2fj14
Rollup merge for boost::mutex

Show diffs side-by-side

added added

removed removed

Lines of Context:
510
510
 
511
511
delete from t2  where a = 2 and b = 'val-2' order by a,b,c,d limit 30;
512
512
 
 
513
--replace_column 4 # 7 # 9 # 10 #
513
514
explain select c from t2 where a = 2 and b = 'val-2' group by c;
514
515
select c from t2 where a = 2 and b = 'val-2' group by c;
515
516
drop table t1,t2;