mariadb/mysql-test/suite/parts/r/backup_log_rocksdb.result
Monty 83e529eced MDEV-18465 Logging of DDL statements during backup
Many of the changes was needed to be able to collect and print engine
name and table version id's in the ddl log.
2021-05-19 22:54:13 +02:00

15 lines
344 B
Text

connect con1,localhost,root,,;
BACKUP STAGE START;
connection default;
# Test partition engine read from .frm
CREATE TABLE t220 (a INT) ENGINE ROCKSDB PARTITION BY KEY(a) PARTITIONS 2;
DROP TABLE t220;
#
# Reading backup ddl log file
#
CREATE,ROCKSDB,1,test,t220,id: 1,,0,,,
DROP,ROCKSDB,1,test,t220,id: 1,,0,,,
#
# Cleanup
#
disconnect con1;