summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/r/innodb_defragment_basic.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/sys_vars/r/innodb_defragment_basic.result')
-rw-r--r--mysql-test/suite/sys_vars/r/innodb_defragment_basic.result24
1 files changed, 0 insertions, 24 deletions
diff --git a/mysql-test/suite/sys_vars/r/innodb_defragment_basic.result b/mysql-test/suite/sys_vars/r/innodb_defragment_basic.result
deleted file mode 100644
index d9226fee99f..00000000000
--- a/mysql-test/suite/sys_vars/r/innodb_defragment_basic.result
+++ /dev/null
@@ -1,24 +0,0 @@
-SET @orig = @@global.innodb_defragment;
-SELECT @orig;
-@orig
-0
-SET GLOBAL innodb_defragment = OFF;
-Warnings:
-Warning 1287 '@@innodb_defragment' is deprecated and will be removed in a future release
-SELECT @@global.innodb_defragment;
-@@global.innodb_defragment
-0
-SET GLOBAL innodb_defragment = ON;
-Warnings:
-Warning 1287 '@@innodb_defragment' is deprecated and will be removed in a future release
-SELECT @@global.innodb_defragment;
-@@global.innodb_defragment
-1
-SET GLOBAL innodb_defragment = 100;
-ERROR 42000: Variable 'innodb_defragment' can't be set to the value of '100'
-SELECT @@global.innodb_defragment;
-@@global.innodb_defragment
-1
-SET GLOBAL innodb_defragment = @orig;
-Warnings:
-Warning 1287 '@@innodb_defragment' is deprecated and will be removed in a future release