mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests.
This commit is contained in:
176
mysql-test/suite/sys_vars/r/tx_isolation_basic.result
Normal file
176
mysql-test/suite/sys_vars/r/tx_isolation_basic.result
Normal file
@ -0,0 +1,176 @@
|
||||
SET @global_start_value = @@global.tx_isolation;
|
||||
SELECT @global_start_value;
|
||||
@global_start_value
|
||||
REPEATABLE-READ
|
||||
SET @session_start_value = @@session.tx_isolation;
|
||||
SELECT @session_start_value;
|
||||
@session_start_value
|
||||
REPEATABLE-READ
|
||||
'#--------------------FN_DYNVARS_183_01------------------------#'
|
||||
SET @@global.tx_isolation = 'READ-UNCOMMITTED';
|
||||
SET @@global.tx_isolation = DEFAULT;
|
||||
ERROR 42000: Variable 'tx_isolation' doesn't have a default value
|
||||
'Bug# 34878: Documentation specifies a DEFAULT value of REPEATABLE-READ';
|
||||
'where as DEFAULT is not supported here.';
|
||||
SET @@session.tx_isolation = 'SERIALIZABLE';
|
||||
SET @@session.tx_isolation = DEFAULT;
|
||||
SELECT @@session.tx_isolation;
|
||||
@@session.tx_isolation
|
||||
READ-UNCOMMITTED
|
||||
'Bug# 34876: Documentation specifies a DEFAULT value of REPEATABLE-READ';
|
||||
'where as DEFAULT here as no effect.';
|
||||
'#---------------------FN_DYNVARS_183_02-------------------------#'
|
||||
SET @@global.tx_isolation = NULL;
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of 'NULL'
|
||||
SET @@global.tx_isolation = '';
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of ''
|
||||
SET @@session.tx_isolation = NULL;
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of 'NULL'
|
||||
SET @@session.tx_isolation = '';
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of ''
|
||||
'#--------------------FN_DYNVARS_183_03------------------------#'
|
||||
SET @@global.tx_isolation = 'READ-UNCOMMITTED';
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
READ-UNCOMMITTED
|
||||
SET @@global.tx_isolation = 'read-COMMITTED';
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
READ-COMMITTED
|
||||
SET @@global.tx_isolation = 'REPEATABLE-READ';
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
REPEATABLE-READ
|
||||
SET @@global.tx_isolation = 'SERIALIZable';
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
SERIALIZABLE
|
||||
SET @@session.tx_isolation = 'READ-UNCOMMITTED';
|
||||
SELECT @@session.tx_isolation;
|
||||
@@session.tx_isolation
|
||||
READ-UNCOMMITTED
|
||||
SET @@session.tx_isolation = 'READ-COMMITTED';
|
||||
SELECT @@session.tx_isolation;
|
||||
@@session.tx_isolation
|
||||
READ-COMMITTED
|
||||
SET @@session.tx_isolation = 'REPEATABLE-READ';
|
||||
SELECT @@session.tx_isolation;
|
||||
@@session.tx_isolation
|
||||
REPEATABLE-READ
|
||||
SET @@session.tx_isolation = 'serializable';
|
||||
SELECT @@session.tx_isolation;
|
||||
@@session.tx_isolation
|
||||
SERIALIZABLE
|
||||
'#--------------------FN_DYNVARS_183_04-------------------------#'
|
||||
SET @@global.tx_isolation = -1;
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of '-1'
|
||||
SET @@global.tx_isolation = READUNCOMMITTED;
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of 'READUNCOMMITTED'
|
||||
SET @@global.tx_isolation = 'REPEATABLE';
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
REPEATABLE-READ
|
||||
'Bug# 34833: REPEATABLE is not documented as as valid tx_isolation level'
|
||||
SET @@global.tx_isolation = OFF;
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of 'OFF'
|
||||
SET @@global.tx_isolation = ON;
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of 'ON'
|
||||
SET @@global.tx_isolation = 'NON-SERIALIZABLE';
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of 'NON-SERIALIZABLE'
|
||||
SET @@tx_isolation = -1;
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of '-1'
|
||||
SET @@tx_isolation = READUNCOMMITTED;
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of 'READUNCOMMITTED'
|
||||
SET @@tx_isolation = 'REPEATABLE';
|
||||
SELECT @@tx_isolation;
|
||||
@@tx_isolation
|
||||
REPEATABLE-READ
|
||||
'Bug# 34833: REPEATABLE is not documented as as valid tx_isolation level'
|
||||
SET @@tx_isolation = 'NONE';
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of 'NONE'
|
||||
SET @@tx_isolation = 'ALL';
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of 'ALL'
|
||||
'#-------------------FN_DYNVARS_183_05----------------------------#'
|
||||
SELECT @@session.tx_isolation = VARIABLE_VALUE
|
||||
FROM INFORMATION_SCHEMA.SESSION_VARIABLES
|
||||
WHERE VARIABLE_NAME='tx_isolation';
|
||||
@@session.tx_isolation = VARIABLE_VALUE
|
||||
1
|
||||
'#----------------------FN_DYNVARS_183_06------------------------#'
|
||||
SELECT @@global.tx_isolation = VARIABLE_VALUE
|
||||
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
||||
WHERE VARIABLE_NAME='tx_isolation';
|
||||
@@global.tx_isolation = VARIABLE_VALUE
|
||||
1
|
||||
'#---------------------FN_DYNVARS_183_07-------------------------#'
|
||||
SET @@global.tx_isolation = 0;
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
READ-UNCOMMITTED
|
||||
SET @@global.tx_isolation = 1;
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
READ-COMMITTED
|
||||
SET @@global.tx_isolation = 2;
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
REPEATABLE-READ
|
||||
SET @@global.tx_isolation = 3;
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
SERIALIZABLE
|
||||
SET @@global.tx_isolation = 0.4;
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
READ-UNCOMMITTED
|
||||
SET @@global.tx_isolation = 1.1;
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
READ-COMMITTED
|
||||
SET @@global.tx_isolation = 1.5;
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
REPEATABLE-READ
|
||||
SET @@global.tx_isolation = 2.9;
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
SERIALIZABLE
|
||||
SET @@session.tx_isolation = 3.49;
|
||||
SELECT @@session.tx_isolation;
|
||||
@@session.tx_isolation
|
||||
SERIALIZABLE
|
||||
SET @@session.tx_isolation = 3.6;
|
||||
ERROR 42000: Variable 'tx_isolation' can't be set to the value of '4'
|
||||
'Bug: Decimal values can be used within the range [0.0-3.5).';
|
||||
'Values are rounded to 0,1,2,3 as evident from outcome.';
|
||||
'#---------------------FN_DYNVARS_183_08----------------------#'
|
||||
SET @@global.tx_isolation = TRUE;
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
READ-COMMITTED
|
||||
SET @@global.tx_isolation = FALSE;
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
READ-UNCOMMITTED
|
||||
'#---------------------FN_DYNVARS_183_09----------------------#'
|
||||
SET tx_isolation = 'REPEATABLE-READ';
|
||||
SET session.tx_isolation = 'REPEATABLE-READ';
|
||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'tx_isolation = 'REPEATABLE-READ'' at line 1
|
||||
SET global.tx_isolation = 'REPEATABLE-READ';
|
||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'tx_isolation = 'REPEATABLE-READ'' at line 1
|
||||
SET session tx_isolation = 'REPEATABLE-READ';
|
||||
SELECT @@tx_isolation;
|
||||
@@tx_isolation
|
||||
REPEATABLE-READ
|
||||
SET global tx_isolation = 'REPEATABLE-READ';
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
REPEATABLE-READ
|
||||
SET @@global.tx_isolation = @global_start_value;
|
||||
SELECT @@global.tx_isolation;
|
||||
@@global.tx_isolation
|
||||
REPEATABLE-READ
|
||||
SET @@session.tx_isolation = @session_start_value;
|
||||
SELECT @@session.tx_isolation;
|
||||
@@session.tx_isolation
|
||||
REPEATABLE-READ
|
Reference in New Issue
Block a user