1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Merge 10.0-base -> 10.0

This commit is contained in:
Igor Babaev
2013-04-20 12:30:40 -07:00
5 changed files with 12 additions and 9 deletions

View File

@ -92,3 +92,4 @@ FLUSH TABLE t1;
SELECT * FROM t1;
DROP TABLE t1;
SET debug_sync = 'RESET';

View File

@ -85,6 +85,7 @@ a b
5 1982-03-20 20:22:34
6 1982-03-20 20:22:34
DROP TABLE t1;
SET debug_sync = 'RESET';
#
# Function defaults run 2. Six digits scale on seconds precision.
#
@ -169,3 +170,4 @@ a b
5 1982-03-20 20:22:34.876543
6 1982-03-20 20:22:34.876543
DROP TABLE t1;
SET debug_sync = 'RESET';

View File

@ -1,20 +1,20 @@
select @@global.innodb_use_fallocate;
@@global.innodb_use_fallocate
1
0
select @@session.innodb_use_fallocate;
ERROR HY000: Variable 'innodb_use_fallocate' is a GLOBAL variable
show global variables like 'innodb_use_fallocate';
Variable_name Value
innodb_use_fallocate ON
innodb_use_fallocate OFF
show session variables like 'innodb_use_fallocate';
Variable_name Value
innodb_use_fallocate ON
innodb_use_fallocate OFF
select * from information_schema.global_variables where variable_name='innodb_use_fallocate';
VARIABLE_NAME VARIABLE_VALUE
INNODB_USE_FALLOCATE ON
INNODB_USE_FALLOCATE OFF
select * from information_schema.session_variables where variable_name='innodb_use_fallocate';
VARIABLE_NAME VARIABLE_VALUE
INNODB_USE_FALLOCATE ON
INNODB_USE_FALLOCATE OFF
set global innodb_use_fallocate=1;
ERROR HY000: Variable 'innodb_use_fallocate' is a read only variable
set session innodb_use_fallocate=1;