mirror of
https://github.com/MariaDB/server.git
synced 2025-07-26 07:02:12 +03:00
11 lines
174 B
Plaintext
11 lines
174 B
Plaintext
CREATE TABLE t(i INT) ENGINE ROCKSDB;
|
|
INSERT INTO t VALUES(1);
|
|
# xtrabackup backup
|
|
INSERT INTO t VALUES(2);
|
|
# xtrabackup prepare
|
|
# restart
|
|
SELECT * FROM t;
|
|
i
|
|
1
|
|
DROP TABLE t;
|