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