Do not report ERROR when sample rate equals 100

This commit is contained in:
ZenoWang
2024-02-06 14:49:31 +00:00
committed by ob-robot
parent 1f1d5c08ae
commit c8ef409bf3
3710 changed files with 486984 additions and 3083329 deletions

View File

@ -26,9 +26,6 @@ public:
virtual int check_need_copy(const ObRawExpr *old_expr, ObRawExpr *&new_expr) = 0;
// check if old expr has already been copied, and if it has been copied, takes it directly.
virtual int find_in_copy_context(const ObRawExpr *old_expr, ObRawExpr *&new_expr) = 0;
virtual int do_copy_expr(const ObRawExpr *old_expr, ObRawExpr *&new_expr) = 0;
virtual bool deep_copy_attributes() const { return false; }
@ -79,8 +76,6 @@ public:
int do_copy_expr(const ObRawExpr *old_expr, ObRawExpr *&new_expr) override;
bool deep_copy_attributes() const { return true; }
int find_in_copy_context(const ObRawExpr *old_expr, ObRawExpr *&new_expr) override;
};
/**
@ -159,8 +154,6 @@ public:
int get_copied_exprs(ObIArray<std::pair<ObRawExpr *, ObRawExpr *>> &from_to_exprs);
int find_in_copy_context(const ObRawExpr *old_expr, ObRawExpr *&new_expr) override;
private:
int add_expr(const ObRawExpr *from, const ObRawExpr *to);