cp bug fix to open source branch

This commit is contained in:
obdev
2021-07-20 17:06:14 +08:00
committed by wangzelin.wzl
parent 91bb0da2ae
commit f45d2cdbe2
37 changed files with 766 additions and 628 deletions

View File

@ -3596,6 +3596,8 @@ public:
virtual int replace_expr(
const common::ObIArray<ObRawExpr*>& other_exprs, const common::ObIArray<ObRawExpr*>& new_exprs);
bool same_as(const Bound &other, ObExprEqualCheckContext *check_context) const;
BoundType type_;
bool is_preceding_;
bool is_nmb_literal_;
@ -3628,11 +3630,11 @@ public:
{
lower_ = lower;
}
inline WindowType get_window_type()
inline WindowType get_window_type() const
{
return win_type_;
}
inline bool is_between()
inline bool is_between() const
{
return is_between_;
}