mariadb/mysql-test/suite/mariabackup/compress_qpress.result
Julius Goryavsky c753b3f6f8 MDEV-27534: mariabackup: missing line in the compress_qpress.result
This commit adds the missing line to the .result file for compress_qpress
(in the mariabackup test suite).
2022-02-22 10:20:42 +01:00

16 lines
259 B
Text

CREATE TABLE t(i INT) ENGINE INNODB;
INSERT INTO t VALUES(1);
# xtrabackup backup
INSERT INTO t VALUES(2);
# xtrabackup prepare
db.opt.qp
t.frm.qp
t.ibd.qp
# shutdown server
# remove datadir
# xtrabackup move back
# restart
SELECT * FROM t;
i
1
DROP TABLE t;