Do not report ERROR when sample rate equals 100
This commit is contained in:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user