mirror of
https://github.com/MariaDB/server.git
synced 2025-07-07 11:58:20 +02:00

Allow for a CI system to be almost out of space, or having so little use, that the Total space is the same as available or used. Thanks Otto Kekäläinen for the bug report and testing.
25 lines
671 B
Text
25 lines
671 B
Text
source include/not_embedded.inc;
|
|
|
|
--echo #
|
|
--echo # MDEV-18328: Make DISKS plugin check some privilege to access
|
|
--echo # information_schema.DISKS table
|
|
--echo #
|
|
|
|
CREATE USER user1@localhost;
|
|
GRANT SELECT ON *.* TO user1@localhost;
|
|
|
|
connect (con1,localhost,user1,,);
|
|
connection con1;
|
|
select sum(Total) >= sum(Available), sum(Total) >= sum(Used) from information_schema.disks;
|
|
disconnect con1;
|
|
|
|
connection default;
|
|
GRANT FILE ON *.* TO user1@localhost;
|
|
|
|
connect (con1,localhost,user1,,);
|
|
connection con1;
|
|
select sum(Total) >= sum(Available), sum(Total) >= sum(Used) from information_schema.disks;
|
|
connection default;
|
|
DROP USER user1@localhost;
|
|
|
|
--echo # End of 10.1 tests
|