[FEAT MERGE] Improve the inner implementation of tx table
Co-authored-by: kongfy <njukongfy@gmail.com>
This commit is contained in:
4
deps/oblib/src/lib/ob_define.h
vendored
4
deps/oblib/src/lib/ob_define.h
vendored
@ -98,7 +98,9 @@ const int64_t MAX_LONG_OPS_TARGET_LENGTH = 128;
|
||||
const int64_t MAX_LONG_OPS_MESSAGE_LENGTH = 512;
|
||||
const int64_t MAX_LS_STATE_LENGTH = 16;
|
||||
const int64_t MAX_LOCK_ID_BUF_LENGTH = 64;
|
||||
const int64_t MAX_LOCK_ROWKEY_BUF_LENGTH = 512;
|
||||
const int64_t MAX_LOCK_MODE_BUF_LENGTH = 8;
|
||||
const int64_t MAX_LOCK_OBJ_TYPE_BUF_LENGTH = 8;
|
||||
const int64_t MAX_LOCK_OP_TYPE_BUF_LENGTH = 32;
|
||||
const int64_t MAX_LOCK_OP_STATUS_BUF_LENGTH = 16;
|
||||
const int64_t MAX_LOCK_OP_EXTRA_INFO_LENGTH = 256;
|
||||
@ -1727,6 +1729,8 @@ const int64_t MAX_MEMSTORE_CNT = 16;
|
||||
// Only limited to minor freeze, major freeze is not subject to this restriction
|
||||
const int64_t MAX_MEMSTORE_CNT_IN_STORAGE = MAX_FROZEN_MEMSTORE_CNT_IN_STORAGE + 1;
|
||||
const int64_t MAX_TX_DATA_TABLE_STATE_LENGTH = 20;
|
||||
const int64_t MAX_TX_DATA_STATE_LENGTH = 16;
|
||||
const int64_t MAX_UNDO_LIST_CHAR_LENGTH = 4096;
|
||||
const int64_t MAX_TABLE_CNT_IN_STORAGE = MAX_SSTABLE_CNT_IN_STORAGE + MAX_MEMSTORE_CNT;
|
||||
const int64_t OB_MAX_PARTITION_NUM_MYSQL = 8192;
|
||||
const int64_t OB_MAX_PARTITION_NUM_ORACLE = 65536;
|
||||
|
||||
Reference in New Issue
Block a user