[FEAT MERGE][CP]optimizer stats enhancement

This commit is contained in:
wangt1xiuyi
2024-02-07 16:56:28 +00:00
committed by ob-robot
parent 540f23b2d3
commit 15307ef94e
92 changed files with 7450 additions and 3026 deletions

View File

@ -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