mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
d0150dc14e
lock --ftwrl-wait-timeout does not finish mariabackup execution when acquired backup lock can't be grabbed for the certain amount of time, it just waits for a long queries finishing before acquiring the lock to avoid unnecessary locking. This commit extends --ftwrl-wait-timeout so, that mariabackup execution is finished if it waits for backup lock during certain amount of time.
11 lines
213 B
Text
11 lines
213 B
Text
CREATE TABLE t(i INT) ENGINE INNODB;
|
|
connect con1,localhost,root,,;
|
|
BEGIN;
|
|
LOCK TABLES t WRITE;
|
|
connection default;
|
|
# xtrabackup backup
|
|
connection con1;
|
|
COMMIT;
|
|
connection default;
|
|
disconnect con1;
|
|
DROP TABLE t;
|