1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

do not force CONNECTION_ID(), FOUND_ROWS(), PI(), CURRENT_USER(),

and VERSION() to be uppercase in e.g. "select pi()"
This commit is contained in:
serg@serg.mysql.com
2003-01-28 00:55:41 +01:00
parent 30eb9c5755
commit 78f492b112
4 changed files with 14 additions and 14 deletions

View File

@ -36,7 +36,7 @@ select rand(999999),rand();
rand(999999) rand()
0.014231365187309 0.028870999839968
select pi(),sin(pi()/2),cos(pi()/2),abs(tan(pi())),cot(1),asin(1),acos(0),atan(1);
PI() sin(pi()/2) cos(pi()/2) abs(tan(pi())) cot(1) asin(1) acos(0) atan(1)
pi() sin(pi()/2) cos(pi()/2) abs(tan(pi())) cot(1) asin(1) acos(0) atan(1)
3.141593 1.000000 0.000000 0.000000 0.64209262 1.570796 1.570796 0.785398
select degrees(pi()),radians(360);
degrees(pi()) radians(360)