1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MyRocks: dont show read-Free replication variables

MariaDB doesn't support Read-Free replication, so showing them only causes
confusion.
Removed variables:
- @@rocksdb_read_free_rpl
- @@rocksdb_read_free_rpl_tables
This commit is contained in:
Sergei Petrunia
2019-06-20 15:29:17 +03:00
parent 7f845c6653
commit a2e9e3fbd4
4 changed files with 33 additions and 4 deletions

View File

@@ -3654,7 +3654,11 @@ void Rdb_tbl_def::check_if_is_mysql_system_table() {
void Rdb_tbl_def::check_and_set_read_free_rpl_table() {
m_is_read_free_rpl_table =
#if 0 // MARIAROCKS_NOT_YET : read-free replication is not supported
rdb_read_free_regex_handler.matches(base_tablename());
#else
false;
#endif
}
void Rdb_tbl_def::set_name(const std::string &name) {