1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

merge from 5.5

This commit is contained in:
Vladislav Vaintroub
2012-02-16 17:33:37 +01:00
202 changed files with 6684 additions and 3439 deletions

View File

@ -0,0 +1,15 @@
SELECT @@global.innodb_flush_checkpoint_debug;
@@global.innodb_flush_checkpoint_debug
0
SET @@global.innodb_flush_checkpoint_debug=1;
SELECT @@global.innodb_flush_checkpoint_debug;
@@global.innodb_flush_checkpoint_debug
1
SET @@global.innodb_flush_checkpoint_debug=0;
SELECT @@global.innodb_flush_checkpoint_debug;
@@global.innodb_flush_checkpoint_debug
0
SET @@session.innodb_flush_checkpoint_debug=1;
ERROR HY000: Variable 'innodb_flush_checkpoint_debug' is a GLOBAL variable and should be set with SET GLOBAL
SELECT @@session.innodb_flush_checkpoint_debug;
ERROR HY000: Variable 'innodb_flush_checkpoint_debug' is a GLOBAL variable