diff options
author | unknown <konstantin@mysql.com> | 2004-02-06 16:40:44 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2004-02-06 16:40:44 +0300 |
commit | 736b845ae789d25aa108364b6a974a2b164bab7e (patch) | |
tree | 71cbf4afe56f4f0914a675c7786799534444b3c0 /mysql-test/r/func_math.result | |
parent | b1145e62e170ce391785dcc5a376054b6ba02216 (diff) | |
download | mariadb-git-736b845ae789d25aa108364b6a974a2b164bab7e.tar.gz |
3.23 -> 4.0 merge: after merge fixes
Diffstat (limited to 'mysql-test/r/func_math.result')
-rw-r--r-- | mysql-test/r/func_math.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/func_math.result b/mysql-test/r/func_math.result index e37862d0176..46ad7a14e25 100644 --- a/mysql-test/r/func_math.result +++ b/mysql-test/r/func_math.result @@ -41,15 +41,21 @@ pi() sin(pi()/2) cos(pi()/2) abs(tan(pi())) cot(1) asin(1) acos(0) atan(1) select degrees(pi()),radians(360); degrees(pi()) radians(360) 180 6.2831853071796 +SELECT ACOS(1.0); ACOS(1.0) 0.000000 +SELECT ASIN(1.0); ASIN(1.0) 1.570796 +SELECT ACOS(0.2*5.0); ACOS(0.2*5.0) 0.000000 +SELECT ACOS(0.5*2.0); ACOS(0.5*2.0) 0.000000 +SELECT ASIN(0.8+0.2); ASIN(0.8+0.2) 1.570796 +SELECT ASIN(1.2-0.2); ASIN(1.2-0.2) 1.570796 |