1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-14533 Provide information_schema tables using which hardware

information can be obtained.

        DISKS plugin implementation added to the tree.
This commit is contained in:
Alexey Botchkov
2018-03-21 12:33:38 +04:00
parent 15051ab14a
commit 9652038453
5 changed files with 285 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--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;