mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +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:
32
mysql-test/suite/sys_vars/r/innodb_table_locks_func.result
Normal file
32
mysql-test/suite/sys_vars/r/innodb_table_locks_func.result
Normal file
@@ -0,0 +1,32 @@
|
||||
'#--------------------FN_DYNVARS_048_01-------------------------#'
|
||||
SET @@global.innodb_table_locks = OFF;
|
||||
'connect (con1,localhost,root,,,,)'
|
||||
'connection con1'
|
||||
SELECT @@global.innodb_table_locks;
|
||||
@@global.innodb_table_locks
|
||||
0
|
||||
SELECT @@session.innodb_table_locks;
|
||||
@@session.innodb_table_locks
|
||||
0
|
||||
'#--------------------FN_DYNVARS_048_02-------------------------#'
|
||||
'----check when innodb_table_locks = ON and autocommit = OFF---'
|
||||
'connect (con2,localhost,root,,,,)'
|
||||
'connection default'
|
||||
DROP TABLE IF EXISTS t1;
|
||||
CREATE TABLE t1 (a INT) ENGINE=INNODB;
|
||||
SET @@autocommit = OFF;
|
||||
SET @@innodb_table_locks = ON;
|
||||
BEGIN;
|
||||
INSERT INTO t1 VALUES(1);
|
||||
SELECT * FROM t1 FOR UPDATE;
|
||||
a
|
||||
1
|
||||
'CONNECTION con2'
|
||||
SET @@innodb_table_locks = ON;
|
||||
SET @@autocommit = OFF;
|
||||
LOCK TABLES t1 WRITE;
|
||||
'CONNECTION default'
|
||||
COMMIT;
|
||||
'CONNECTION con2'
|
||||
UNLOCK tables;
|
||||
DROP TABLE t1;
|
Reference in New Issue
Block a user