~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/group_by.test

  • Committer: Brian Aker
  • Date: 2009-03-05 02:08:56 UTC
  • mto: This revision was merged to the branch mainline in revision 911.
  • Revision ID: brian@tangent.org-20090305020856-iydjciom4pjxrwwb
Remove old mode, which was another way of saying "the new optimizer bit do not work"

Show diffs side-by-side

added added

removed removed

Lines of Context:
955
955
EXPLAIN SELECT 1 FROM t2 WHERE a IN
956
956
  (SELECT a FROM t1 USE INDEX (i2) IGNORE INDEX (i2));
957
957
 
958
 
SHOW VARIABLES LIKE 'old';  
959
 
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
960
 
SET @@old = off;  
961
 
 
962
958
DROP TABLE t1, t2;
963
959
 
964
960
#