MySQLOnRocksDB/mysql-5.6
forked from facebook/mysql-5.6

Loading…
Check duplicates on "Table Name => internal index id mappings" data dictionary #58
Closed
yoshinorim opened this Issue
· 0 comments
Owner
yoshinorim
commented
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
create table t (id int primary key ) engine=rocksdb;
insert into t values (1), (2), (3);
$ rm /data/test/t.frm
flush tables;
create table t (id int primary key, value int ) engine=rocksdb;
=> Succeeded
select * from t;
=> Empty Set
MyRocks needs to be more robust so that second create table fails.