mirror of
https://github.com/MariaDB/server.git
synced 2025-08-29 13:51:35 +02:00
9 lines
714 B
Text
9 lines
714 B
Text
call mtr.add_suppression('RocksDB: Schema mismatch');
|
|
CREATE TABLE t1 (pk int primary key) ENGINE=ROCKSDB;
|
|
CREATE TABLE t2 (pk int primary key) ENGINE=ROCKSDB PARTITION BY KEY(pk) PARTITIONS 4;
|
|
"Expect errors that we are missing two .frm files"
|
|
FOUND 1 /RocksDB: Schema mismatch - Table test.t1 is registered in RocksDB but does not have a .frm file/ in validate_datadic.err
|
|
FOUND 1 /RocksDB: Schema mismatch - Table test.t2 is registered in RocksDB but does not have a .frm file/ in validate_datadic.err
|
|
"Expect an error that we have an extra .frm file"
|
|
FOUND 1 /Schema mismatch - A .frm file exists for table test.t1_dummy, but that table is not registered in RocksDB/ in validate_datadic.err
|
|
DROP TABLE t1, t2;
|