[FEAT MERGE][CP]optimizer stats enhancement
This commit is contained in:
@ -10436,6 +10436,19 @@ public:
|
||||
private:
|
||||
int ret_;
|
||||
};
|
||||
|
||||
struct ObCancelGatherStatsArg
|
||||
{
|
||||
OB_UNIS_VERSION(1);
|
||||
public:
|
||||
ObCancelGatherStatsArg() : tenant_id_(0), task_id_() {}
|
||||
int assign(const ObCancelGatherStatsArg &other);
|
||||
bool is_valid() const { return tenant_id_ > 0; }
|
||||
uint64_t tenant_id_;
|
||||
common::ObString task_id_;
|
||||
TO_STRING_KV(K(tenant_id_), K(task_id_));
|
||||
};
|
||||
|
||||
}//end namespace obrpc
|
||||
}//end namespace oceanbase
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user