Commit 48c4ff80 authored by Alexey Kopytov's avatar Alexey Kopytov

Fixed parser test failure introduced by the patch for bug #21205.

parent 4fd80a9d
...@@ -522,7 +522,7 @@ select conv(255 AS p1, 10 AS p2, 16 AS p3); ...@@ -522,7 +522,7 @@ select conv(255 AS p1, 10 AS p2, 16 AS p3);
ERROR 42000: Incorrect parameters in the call to native function 'conv' ERROR 42000: Incorrect parameters in the call to native function 'conv'
select atan(10); select atan(10);
atan(10) atan(10)
1.4711276743037 1.47112767430373
select atan(10 AS p1); select atan(10 AS p1);
ERROR 42000: Incorrect parameters in the call to native function 'atan' ERROR 42000: Incorrect parameters in the call to native function 'atan'
select atan(10 p1); select atan(10 p1);
...@@ -533,7 +533,7 @@ select atan(10 "p1"); ...@@ -533,7 +533,7 @@ select atan(10 "p1");
ERROR 42000: Incorrect parameters in the call to native function 'atan' ERROR 42000: Incorrect parameters in the call to native function 'atan'
select atan(10, 20); select atan(10, 20);
atan(10, 20) atan(10, 20)
0.46364760900081 0.463647609000806
select atan(10 AS p1, 20); select atan(10 AS p1, 20);
ERROR 42000: Incorrect parameters in the call to native function 'atan' ERROR 42000: Incorrect parameters in the call to native function 'atan'
select atan(10 p1, 20); select atan(10 p1, 20);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment