mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
9 lines
164 B
Text
9 lines
164 B
Text
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;
|