~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/having.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:
237
237
20      hello
238
238
30      hello
239
239
select sum(col1) as co12 from t1 group by col2 having col2 10;
240
 
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 '10' at line 1
 
240
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 '10' at line 1
241
241
select sum(col1) as co2, count(col2) as cc from t1 group by col1 having col1 =10;
242
242
co2     cc
243
243
40      4