mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
316f0d8fe3
for multi-file innodb_data_file_path. Use fil_extend_space_to_desired_size() to correctly extend system tablespace. Make sure to get tablespace size from the first tablespace part.
19 lines
587 B
Text
19 lines
587 B
Text
call mtr.add_suppression("InnoDB: New log files created");
|
|
CREATE TABLE t(a varchar(40) PRIMARY KEY, b varchar(40), c varchar(40), d varchar(40), index(b,c,d)) ENGINE INNODB;
|
|
# Create full backup , modify table, then create incremental/differential backup
|
|
BEGIN;
|
|
INSERT INTO t select uuid(), uuid(), uuid(), uuid() from seq_1_to_100000;
|
|
COMMIT;
|
|
SELECT count(*) FROM t;
|
|
count(*)
|
|
100000
|
|
# Prepare full backup, apply incremental one
|
|
# Restore and check results
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart server
|
|
SELECT count(*) FROM t;
|
|
count(*)
|
|
100000
|
|
DROP TABLE t;
|