~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/parser.result

  • Committer: Monty Taylor
  • Date: 2009-08-07 17:09:45 UTC
  • mfrom: (1112 staging)
  • mto: (1093.1.57 captain)
  • mto: This revision was merged to the branch mainline in revision 1115.
  • Revision ID: mordred@inaugust.com-20090807170945-8i6la969fsm3t0ww
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
389
389
ERROR 42000: Incorrect parameters in the call to native function 'conv'
390
390
select atan(10);
391
391
atan(10)
392
 
1.4711276743037347
 
392
1.47112767430373
393
393
select atan(10 AS p1);
394
394
ERROR 42000: Incorrect parameters in the call to native function 'atan'
395
395
select atan(10 p1);
400
400
ERROR 42000: Incorrect parameters in the call to native function 'atan'
401
401
select atan(10, 20);
402
402
atan(10, 20)
403
 
0.4636476090008061
 
403
0.463647609000806
404
404
select atan(10 AS p1, 20);
405
405
ERROR 42000: Incorrect parameters in the call to native function 'atan'
406
406
select atan(10 p1, 20);