mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
10 lines
165 B
Text
10 lines
165 B
Text
CREATE TABLE t(i INT) ENGINE INNODB;
|
|
INSERT INTO t VALUES(1);
|
|
# xtrabackup backup
|
|
# xtrabackup prepare
|
|
# restart server
|
|
# restart
|
|
SELECT * FROM t;
|
|
i
|
|
1
|
|
DROP TABLE t;
|