1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

MDEV-13122 Backup myrocksdb with mariabackup.

This commit is contained in:
Vladislav Vaintroub
2018-06-07 15:13:54 +01:00
parent ea70586282
commit aba2d7301f
13 changed files with 435 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
CREATE TABLE t(i INT) ENGINE ROCKSDB;
INSERT INTO t VALUES(1);
# xtrabackup backup
INSERT INTO t VALUES(2);
# xtrabackup prepare
SELECT * FROM t;
i
1
DROP TABLE t;