mirror of
https://github.com/MariaDB/server.git
synced 2025-08-05 13:16:09 +03:00
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.
12 lines
213 B
Plaintext
12 lines
213 B
Plaintext
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;
|