~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/group_min_max.test

  • Committer: Brian Aker
  • Date: 2009-11-26 03:10:24 UTC
  • mfrom: (1222.1.14 staging)
  • mto: This revision was merged to the branch mainline in revision 1227.
  • Revision ID: brian@gaz-20091126031024-2t9yhghfq2m6tv4u
Small cleanups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
704
704
 
705
705
CREATE TABLE t1 (a varchar(5), b int, PRIMARY KEY (a,b));
706
706
INSERT INTO t1 VALUES ('AA',1), ('AA',2), ('AA',3), ('BB',1), ('AA',4);
707
 
OPTIMIZE TABLE t1;
 
707
ALTER TABLE t1 ENGINE="DEFAULT";
708
708
 
709
709
SELECT a FROM t1 WHERE a='AA' GROUP BY a;
710
710
SELECT a FROM t1 WHERE a='BB' GROUP BY a;