mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
12 lines
273 B
Plaintext
12 lines
273 B
Plaintext
--source include/not_windows.inc
|
|
|
|
if (!$DISKS_SO) {
|
|
skip No DISKS plugin;
|
|
}
|
|
|
|
install plugin DISKS soname 'disks';
|
|
show create table information_schema.disks;
|
|
select sum(Total) > sum(Available), sum(Total)>sum(Used) from information_schema.disks;
|
|
|
|
uninstall plugin DISKS;
|