1CREATE TABLE t1 (pk int primary key) ENGINE=ROCKSDB;
2CREATE TABLE t2 (pk int primary key) ENGINE=ROCKSDB PARTITION BY KEY(pk) PARTITIONS 4;
3# restart
4# restart:--log-error=MYSQLTEST_VARDIR/tmp/validate_datadic.err --rocksdb_validate_tables=2
5"Expect errors that we are missing two .frm files"
6# restart:--log-error=MYSQLTEST_VARDIR/tmp/validate_datadic.err --rocksdb_validate_tables=2
7"Expect an error that we have an extra .frm file"
8# restart
9DROP TABLE t1, t2;
10