mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
5a43c8bae7
xtrabackup_copy_log(): Use a 64-bit bitmask (lsn_t), not 32-bit (int).
17 lines
387 B
Text
17 lines
387 B
Text
#
|
|
# MDEV-13416 mariabackup fails with EFAULT "Bad Address"
|
|
#
|
|
FOUND 1 /InnoDB: 5\.7\.\d+ started; log sequence number 17592186044428/ in mysqld.1.err
|
|
CREATE TABLE t(i INT) ENGINE INNODB;
|
|
INSERT INTO t VALUES(1);
|
|
# xtrabackup backup
|
|
INSERT INTO t VALUES(2);
|
|
# xtrabackup prepare
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart server
|
|
SELECT * FROM t;
|
|
i
|
|
1
|
|
DROP TABLE t;
|