Skip to content
Permalink
Browse files
Fix sys_vars innodb_empty_free_list_algorithm_basic
Post xtradb 5.6.36 merge the output has changed.
  • Loading branch information
cvicentiu committed May 17, 2017
1 parent 339a290 commit 5fe55b1
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1,7 +1,7 @@
SET @start_value = @@GLOBAL.innodb_empty_free_list_algorithm;
SELECT @@GLOBAL.innodb_empty_free_list_algorithm;
@@GLOBAL.innodb_empty_free_list_algorithm
backoff
legacy
SELECT @@SESSION.innodb_empty_free_list_algorithm;
ERROR HY000: Variable 'innodb_empty_free_list_algorithm' is a GLOBAL variable
SET GLOBAL innodb_empty_free_list_algorithm='legacy';

0 comments on commit 5fe55b1

Please sign in to comment.