~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/group_by.result

  • Committer: Monty
  • Date: 2008-11-28 23:12:37 UTC
  • mto: (632.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 631.
  • Revision ID: mordred@palanthas.inaugust.com-20081128231237-3ie7yeohoyq3cdxi
Updated test output with new and improved error messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1364
1364
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
1365
1365
1       SIMPLE  t1      index   NULL    PRIMARY 4       NULL    144     
1366
1366
EXPLAIN SELECT a FROM t1 FORCE INDEX ();
1367
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
 
1367
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near ')' at line 1
1368
1368
EXPLAIN SELECT a FROM t1 IGNORE INDEX ();
1369
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
 
1369
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near ')' at line 1
1370
1370
EXPLAIN SELECT a FROM t1 USE INDEX FOR JOIN (i2) 
1371
1371
USE INDEX FOR GROUP BY (i2) GROUP BY a;
1372
1372
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra