~ubuntu-branches/ubuntu/karmic/mysql-dfsg-5.1/karmic

« back to all changes in this revision

Viewing changes to mysql-test/r/parser.result

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug
  • Date: 2009-06-25 12:55:45 UTC
  • mfrom: (0.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20090625125545-v27uqh8rlsj8uh2y
Tags: upstream-5.1.34
ImportĀ upstreamĀ versionĀ 5.1.34

Show diffs side-by-side

added added

removed removed

Lines of Context:
522
522
ERROR 42000: Incorrect parameters in the call to native function 'conv'
523
523
select atan(10);
524
524
atan(10)
525
 
1.4711276743037
 
525
1.47112767430373
526
526
select atan(10 AS p1);
527
527
ERROR 42000: Incorrect parameters in the call to native function 'atan'
528
528
select atan(10 p1);
533
533
ERROR 42000: Incorrect parameters in the call to native function 'atan'
534
534
select atan(10, 20);
535
535
atan(10, 20)
536
 
0.46364760900081
 
536
0.463647609000806
537
537
select atan(10 AS p1, 20);
538
538
ERROR 42000: Incorrect parameters in the call to native function 'atan'
539
539
select atan(10 p1, 20);