mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00
Fix when compiling without InnoDB
This commit is contained in:
parent
b5f49a3abd
commit
d5691702d7
@ -1,3 +1,4 @@
|
|||||||
|
set global innodb_table_locks=1;
|
||||||
select @@innodb_table_locks;
|
select @@innodb_table_locks;
|
||||||
@@innodb_table_locks
|
@@innodb_table_locks
|
||||||
1
|
1
|
||||||
|
@ -1 +0,0 @@
|
|||||||
--innodb-table-lock=1
|
|
@ -4,6 +4,8 @@
|
|||||||
# Check and select innodb lock type
|
# Check and select innodb lock type
|
||||||
#
|
#
|
||||||
|
|
||||||
|
set global innodb_table_locks=1;
|
||||||
|
|
||||||
select @@innodb_table_locks;
|
select @@innodb_table_locks;
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -12,7 +14,10 @@ select @@innodb_table_locks;
|
|||||||
|
|
||||||
connect (con1,localhost,root,,);
|
connect (con1,localhost,root,,);
|
||||||
connect (con2,localhost,root,,);
|
connect (con2,localhost,root,,);
|
||||||
|
|
||||||
|
--disable_warnings
|
||||||
drop table if exists t1;
|
drop table if exists t1;
|
||||||
|
--enable_warnings
|
||||||
|
|
||||||
#
|
#
|
||||||
# Testing of explicit table locks with enforced table locks
|
# Testing of explicit table locks with enforced table locks
|
||||||
|
Loading…
x
Reference in New Issue
Block a user