table type occupation for mds sstable

This commit is contained in:
hiddenbomb 2023-11-29 15:11:30 +00:00 committed by ob-robot
parent ac97c968bf
commit 228cfb5382
2 changed files with 3 additions and 1 deletions

View File

@ -74,7 +74,8 @@ const char* ObITable::table_type_name_[] =
"DDL_MERGE_CO",
"DDL_MERGE_CG",
"DDL_MEM_CO",
"DDL_MEM_CG"
"DDL_MEM_CG",
"MDS"
};
uint64_t ObITable::TableKey::hash() const

View File

@ -101,6 +101,7 @@ public:
DDL_MERGE_CG_SSTABLE = 22, // used for column store ddl, for normal cg sstable, rowkey cg not supported
DDL_MEM_CO_SSTABLE = 23,
DDL_MEM_CG_SSTABLE = 24,
MDS_SSTABLE = 25,
// < add new sstable before here, See is_sstable()
MAX_TABLE_TYPE