[scn] rename log_ts to scn

This commit is contained in:
obdev
2022-11-28 02:29:00 +00:00
committed by ob-robot
parent 89c7502360
commit 59db61e110
316 changed files with 219033 additions and 6033 deletions

View File

@ -310,7 +310,7 @@ struct EstimateCostInfo {
phy_plan_type_(ObPhyPlanType::OB_PHY_PLAN_UNINITIALIZED),
location_type_(ObPhyPlanType::OB_PHY_PLAN_UNINITIALIZED),
contain_fake_cte_(false),
contain_merge_op_(false),
contain_pw_merge_op_(false),
contain_das_op_(false),
parallel_(1),
server_cnt_(1)
@ -335,7 +335,7 @@ struct EstimateCostInfo {
phy_plan_type_(ObPhyPlanType::OB_PHY_PLAN_UNINITIALIZED),
location_type_(ObPhyPlanType::OB_PHY_PLAN_UNINITIALIZED),
contain_fake_cte_(false),
contain_merge_op_(false),
contain_pw_merge_op_(false),
contain_das_op_(false),
parallel_(1),
server_cnt_(1),
@ -409,7 +409,7 @@ struct EstimateCostInfo {
virtual int re_estimate_cost(EstimateCostInfo &info, double &card, double &cost);
double get_path_output_rows() const;
bool contain_fake_cte() const { return contain_fake_cte_; }
bool contain_merge_op() const { return contain_merge_op_; }
bool contain_pw_merge_op() const { return contain_pw_merge_op_; }
bool is_pipelined_path() const { return is_pipelined_path_; }
bool is_nl_style_pipelined_path() const { return is_nl_style_pipelined_path_; }
virtual int compute_pipeline_info();
@ -480,7 +480,7 @@ struct EstimateCostInfo {
ObPhyPlanType phy_plan_type_;
ObPhyPlanType location_type_;
bool contain_fake_cte_;
bool contain_merge_op_;
bool contain_pw_merge_op_;
bool contain_das_op_;
// remember the parallel info to get this sharding
int64_t parallel_;