Cancel occupation

This commit is contained in:
Azipro 2024-12-13 09:44:43 +00:00 committed by ob-robot
parent 20831244fe
commit 9b4a13788e
2 changed files with 3 additions and 8 deletions

View File

@ -409,8 +409,7 @@ OB_SERIALIZE_MEMBER(ObIDASTaskOp,
attach_ctdef_,
attach_rtdef_,
das_gts_opt_info_,
plan_line_id_,
detectable_id_);
plan_line_id_);
OB_DEF_SERIALIZE(ObDASGTSOptInfo)
{

View File

@ -14,7 +14,6 @@
#define OBDEV_SRC_SQL_DAS_OB_DAS_TASK_H_
#include "share/ob_define.h"
#include "share/ob_encryption_struct.h"
#include "share/detect/ob_detectable_id.h"
#include "storage/tx/ob_trans_define.h"
#include "storage/tx/ob_clog_encrypt_info.h"
#include "rpc/obrpc/ob_rpc_result_code.h"
@ -174,8 +173,7 @@ public:
attach_rtdef_(nullptr),
das_gts_opt_info_(op_alloc),
plan_line_id_(0),
das_task_start_timestamp_(0),
detectable_id_()
das_task_start_timestamp_(0)
{
das_task_node_.get_data() = this;
}
@ -247,8 +245,7 @@ public:
K_(task_status),
K_(related_tablet_ids),
K_(das_task_node),
K_(plan_line_id),
K_(detectable_id));
K_(plan_line_id));
public:
void set_tenant_id(uint64_t tenant_id) { tenant_id_ = tenant_id; }
uint64_t get_tenant_id() const { return tenant_id_; }
@ -355,7 +352,6 @@ protected:
int64_t plan_line_id_; //plan operator id
public:
int64_t das_task_start_timestamp_;
ObDetectableId detectable_id_;
};
typedef common::ObObjStore<ObIDASTaskOp*, common::ObIAllocator&> DasTaskList;