mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
6a3545dd1e
The issue is caused by59a0236da4
commit. The initial intention of the commit was to speed up "mariabackup --prepare". The call stack of binlog position reading is the following: ▾ trx_rseg_mem_restore ▾ trx_rseg_array_init ▾ trx_lists_init_at_db_start ▸ srv_start Both trx_lists_init_at_db_start() and trx_rseg_mem_restore() contain special cases for srv_operation == SRV_OPERATION_RESTORE condition, and on this condition only rseg headers are read to parse binlog position. Performance impact is not so big. The solution is to revert59a0236da4
.
25 lines
632 B
Text
25 lines
632 B
Text
--source include/have_innodb.inc
|
|
--source include/have_log_bin.inc
|
|
|
|
let $basedir=$MYSQLTEST_VARDIR/tmp/backup;
|
|
|
|
CREATE TABLE t(a varchar(60)) ENGINE INNODB;
|
|
INSERT INTO t VALUES(1);
|
|
|
|
SHOW VARIABLES like 'log_bin';
|
|
|
|
--disable_result_log
|
|
exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --target-dir=$basedir;
|
|
--enable_result_log
|
|
|
|
exec $XTRABACKUP --prepare --binlog-info=1 --target-dir=$basedir ;
|
|
|
|
let SEARCH_FILE=$MYSQLTEST_VARDIR/log/current_test;
|
|
--let SEARCH_PATTERN= Last binlog file .+, position \d+
|
|
--source include/search_pattern_in_file.inc
|
|
--echo # expect FOUND
|
|
|
|
DROP TABLE t;
|
|
|
|
# Cleanup
|
|
rmdir $basedir;
|