~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/parser.test

move ATAN() and ATAN2() function into math_functions plugin. ATAN2() is just another instance of ATAN()

Show diffs side-by-side

added added

removed removed

Lines of Context:
519
519
#   atan(10) from 64-bit version returns 1.4711276743037345
520
520
--replace_result 1.4711276743037345 1.4711276743037347
521
521
select atan(10);
522
522
select atan(10 AS p1);
523
523
select atan(10 p1);
524
524
select atan(10 AS "p1");
525
525
select atan(10 "p1");
526
526
 
527
527
select atan(10, 20);
528
528
select atan(10 AS p1, 20);
529
529
select atan(10 p1, 20);
530
530
select atan(10 AS "p1", 20);
531
531
select atan(10 "p1", 20);
532
532
select atan(10, 20 AS p2);
533
533
select atan(10, 20 p2);
534
534
select atan(10, 20 AS "p2");
535
535
select atan(10, 20 "p2");
536
536
select atan(10 AS p1, 20 AS p2);
537
537
 
538
538
#