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

Fixed bug when having many binary log files

Fixed bug when deleting keys with possible NULL values
many changes to mysqltest
This commit is contained in:
monty@donna.mysql.com
2001-01-08 00:04:30 +02:00
parent 7541a877bc
commit 6d0e529042
33 changed files with 762 additions and 575 deletions

View File

@ -11,5 +11,5 @@ select abs(-10), sign(-5), sign(5), sign(0);
select log(exp(10)),exp(log(sqrt(10))*2);
select pow(10,log10(10)),power(2,4);
select rand(999999),rand();
select pi(),sin(pi()/2),cos(pi()/2),tan(pi()),cot(1),asin(1),acos(0),atan(1);
select pi(),sin(pi()/2),cos(pi()/2),abs(tan(pi())),cot(1),asin(1),acos(0),atan(1);
select degrees(pi()),radians(360);