[scn] fix failure of mittest after refresh feature scn

This commit is contained in:
obdev
2022-11-28 01:46:42 +00:00
committed by ob-robot
parent 49a02f3304
commit 54b64a7263
1898 changed files with 255804 additions and 280809 deletions

View File

@ -561,7 +561,6 @@ private:
int try_deregister_rt_monitor_node();
int submit_op_monitor_node();
bool match_rt_monitor_condition(int64_t rows);
int check_stack_once();
protected:
const ObOpSpec &spec_;
ObExecContext &ctx_;
@ -607,7 +606,7 @@ protected:
}
inline void end_cpu_time_counting()
{
total_time_ += (rdtsc() - cpu_begin_time_);
op_monitor_info_.cpu_time_ += (rdtsc() - cpu_begin_time_);
// move back to parent operator
if (OB_LIKELY(spec_.get_parent())) {
common::ObActiveSessionGuard::get_stat().plan_line_id_ = spec_.get_parent()->id_;
@ -617,12 +616,10 @@ protected:
}
uint64_t cpu_begin_time_; // start of counting cpu time
uint64_t total_time_; // total time cost on this op, including io & cpu time
protected:
bool batch_reach_end_;
bool row_reach_end_;
int64_t output_batches_b4_rescan_;
bool check_stack_overflow_;
DISALLOW_COPY_AND_ASSIGN(ObOperator);
};