mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge branch '10.1' into 10.2
This commit is contained in:
@ -1,14 +0,0 @@
|
||||
install plugin DISKS soname 'disks';
|
||||
show create table information_schema.disks;
|
||||
Table Create Table
|
||||
DISKS CREATE TEMPORARY TABLE `DISKS` (
|
||||
`Disk` varchar(4096) NOT NULL DEFAULT '',
|
||||
`Path` varchar(4096) NOT NULL DEFAULT '',
|
||||
`Total` int(32) NOT NULL DEFAULT 0,
|
||||
`Used` int(32) NOT NULL DEFAULT 0,
|
||||
`Available` int(32) NOT NULL DEFAULT 0
|
||||
) ENGINE=MEMORY DEFAULT CHARSET=utf8
|
||||
select sum(Total) > sum(Available), sum(Total)>sum(Used) from information_schema.disks;
|
||||
sum(Total) > sum(Available) sum(Total)>sum(Used)
|
||||
1 1
|
||||
uninstall plugin DISKS;
|
@ -1,11 +0,0 @@
|
||||
--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;
|
Reference in New Issue
Block a user