diff options
author | Alexey Kopytov <Alexey.Kopytov@sun.com> | 2009-02-14 19:04:16 +0300 |
---|---|---|
committer | Alexey Kopytov <Alexey.Kopytov@sun.com> | 2009-02-14 19:04:16 +0300 |
commit | 6d1dc3270b11b71b83acf6cc1ead73224c68d3b1 (patch) | |
tree | 71e366805cba182a0d29eb91faa75faaef89cccd /mysql-test/r/parser.result | |
parent | 8efeeb8bd2422ed13580d312661e70b187c18034 (diff) | |
download | mariadb-git-6d1dc3270b11b71b83acf6cc1ead73224c68d3b1.tar.gz |
Fixed parser test failure introduced by the patch for bug #21205.
mysql-test/r/parser.result:
Take additional precision into account.
Diffstat (limited to 'mysql-test/r/parser.result')
-rw-r--r-- | mysql-test/r/parser.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/parser.result b/mysql-test/r/parser.result index 270c1ec5670..002fbd02c2a 100644 --- a/mysql-test/r/parser.result +++ b/mysql-test/r/parser.result @@ -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' select atan(10); atan(10) -1.4711276743037 +1.47112767430373 select atan(10 AS p1); ERROR 42000: Incorrect parameters in the call to native function 'atan' select atan(10 p1); @@ -533,7 +533,7 @@ select atan(10 "p1"); ERROR 42000: Incorrect parameters in the call to native function 'atan' select atan(10, 20); atan(10, 20) -0.46364760900081 +0.463647609000806 select atan(10 AS p1, 20); ERROR 42000: Incorrect parameters in the call to native function 'atan' select atan(10 p1, 20); |