~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/parser.result

  • Committer: Brian Aker
  • Date: 2009-08-06 15:04:21 UTC
  • mfrom: (1093.1.52 captain)
  • Revision ID: brian@gaz-20090806150421-w8yrasl1m8exorxs
Merge Jay

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);