1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00
Files
mariadb/mysql-test/suite/mariabackup/error_during_copyback.result
2021-04-14 10:33:59 +03:00

11 lines
165 B
Plaintext

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;