~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/parser.result

  • Committer: Brian Aker
  • Date: 2009-02-04 18:28:00 UTC
  • mfrom: (813.1.26 new-temporal)
  • Revision ID: brian@tangent.org-20090204182800-ra3p8rlu4zrs9fvn
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
334
334
ERROR 42000: Incorrect parameter count in the call to native function 'rand'
335
335
select round(1, 2, 3);
336
336
ERROR 42000: Incorrect parameter count in the call to native function 'round'
337
 
select yearweek();
338
 
ERROR 42000: Incorrect parameter count in the call to native function 'yearweek'
339
 
select yearweek(1, 2, 3);
340
 
ERROR 42000: Incorrect parameter count in the call to native function 'yearweek'
341
337
select abs(3);
342
338
abs(3)
343
339
3