mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
c1ab0e6fc6
mariabackup does not load dictionary during backup, but it loads tablespaces, that is why fil_system.max_assigned_id is not set with dict_check_tablespaces_and_store_max_id(). There is no sense to issue the warning during backup.
14 lines
296 B
Text
14 lines
296 B
Text
CREATE TABLE t(i INT) ENGINE INNODB;
|
|
INSERT INTO t VALUES(1);
|
|
# xtrabackup backup
|
|
NOT FOUND /InnoDB: Allocated tablespace ID/ in backup.log
|
|
INSERT INTO t VALUES(2);
|
|
# xtrabackup prepare
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart server
|
|
SELECT * FROM t;
|
|
i
|
|
1
|
|
DROP TABLE t;
|