place holder for no logging param
This commit is contained in:
@ -184,6 +184,7 @@ ObDDLTaskSerializeField::ObDDLTaskSerializeField(const int64_t task_version,
|
||||
is_unique_index_ = is_unique_index;
|
||||
is_global_index_ = is_global_index;
|
||||
is_pre_split_ = is_pre_split;
|
||||
is_no_logging_ = false;
|
||||
}
|
||||
|
||||
void ObDDLTaskSerializeField::reset()
|
||||
@ -197,6 +198,7 @@ void ObDDLTaskSerializeField::reset()
|
||||
is_unique_index_ = false;
|
||||
is_global_index_ = false;
|
||||
is_pre_split_ = false;
|
||||
is_no_logging_ = false;
|
||||
}
|
||||
|
||||
OB_SERIALIZE_MEMBER(ObDDLTaskSerializeField,
|
||||
@ -208,7 +210,8 @@ OB_SERIALIZE_MEMBER(ObDDLTaskSerializeField,
|
||||
sub_task_trace_id_,
|
||||
is_unique_index_,
|
||||
is_global_index_,
|
||||
is_pre_split_);
|
||||
is_pre_split_,
|
||||
is_no_logging_);
|
||||
|
||||
ObCreateDDLTaskParam::ObCreateDDLTaskParam()
|
||||
: sub_task_trace_id_(0), tenant_id_(OB_INVALID_ID), object_id_(OB_INVALID_ID), schema_version_(0), parallelism_(0),
|
||||
|
@ -196,10 +196,10 @@ struct ObDDLTaskSerializeField final
|
||||
OB_UNIS_VERSION(1);
|
||||
public:
|
||||
TO_STRING_KV(K_(task_version), K_(parallelism), K_(data_format_version), K_(consumer_group_id),
|
||||
K_(is_abort), K_(sub_task_trace_id), K_(is_unique_index), K_(is_global_index) ,K_(is_pre_split));
|
||||
K_(is_abort), K_(sub_task_trace_id), K_(is_unique_index), K_(is_global_index) ,K_(is_pre_split), K_(is_no_logging));
|
||||
ObDDLTaskSerializeField() : task_version_(0), parallelism_(0), data_format_version_(0),
|
||||
consumer_group_id_(0), is_abort_(false), sub_task_trace_id_(0),
|
||||
is_unique_index_(false), is_global_index_(false), is_pre_split_(false) {}
|
||||
is_unique_index_(false), is_global_index_(false), is_pre_split_(false), is_no_logging_(false) {}
|
||||
ObDDLTaskSerializeField(const int64_t task_version,
|
||||
const int64_t parallelism,
|
||||
const uint64_t data_format_version,
|
||||
@ -221,6 +221,7 @@ public:
|
||||
bool is_unique_index_;
|
||||
bool is_global_index_;
|
||||
bool is_pre_split_;
|
||||
bool is_no_logging_;
|
||||
};
|
||||
|
||||
struct ObCreateDDLTaskParam final
|
||||
|
@ -34,7 +34,8 @@ enum ObDDLMacroBlockType
|
||||
DDL_MB_DATA_TYPE = 1,
|
||||
DDL_MB_INDEX_TYPE = 2,
|
||||
DDL_MB_SSTABLE_META_TYPE = 3,
|
||||
DDL_MB_TABLET_META_TYPE = 4
|
||||
DDL_MB_TABLET_META_TYPE = 4,
|
||||
DDL_MB_SS_EMPTY_DATA_TYPE = 5,
|
||||
};
|
||||
|
||||
class ObDDLMacroHandle
|
||||
|
Reference in New Issue
Block a user