mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#21114 (Foreign key creation fails to table with name format)
Due to the complexity of this change, everything is documented in WL#3565 This patch is the third iteration, it takes into account the comments received to date.
This commit is contained in:
@ -102,6 +102,18 @@ Note 1003 select pi() AS `pi()`,format(sin((pi() / 2)),6) AS `format(sin(pi()/2)
|
||||
select degrees(pi()),radians(360);
|
||||
degrees(pi()) radians(360)
|
||||
180 6.2831853071796
|
||||
select format(atan(-2, 2), 6);
|
||||
format(atan(-2, 2), 6)
|
||||
-0.785398
|
||||
select format(atan(pi(), 0), 6);
|
||||
format(atan(pi(), 0), 6)
|
||||
1.570796
|
||||
select format(atan2(-2, 2), 6);
|
||||
format(atan2(-2, 2), 6)
|
||||
-0.785398
|
||||
select format(atan2(pi(), 0), 6);
|
||||
format(atan2(pi(), 0), 6)
|
||||
1.570796
|
||||
SELECT ACOS(1.0);
|
||||
ACOS(1.0)
|
||||
0
|
||||
|
Reference in New Issue
Block a user