patch 4.0

This commit is contained in:
wangzelin.wzl
2022-10-24 10:34:53 +08:00
parent 4ad6e00ec3
commit 93a1074b0c
10533 changed files with 2588271 additions and 2299373 deletions

View File

@ -16,25 +16,26 @@
#include "lib/ob_name_def.h"
#include "sql/engine/expr/ob_expr_operator.h"
namespace oceanbase {
namespace sql {
class ObExprSubQueryGreaterEqual : public ObSubQueryRelationalExpr {
namespace oceanbase
{
namespace sql
{
class ObExprSubQueryGreaterEqual : public ObSubQueryRelationalExpr
{
public:
explicit ObExprSubQueryGreaterEqual(common::ObIAllocator& alloc);
explicit ObExprSubQueryGreaterEqual(common::ObIAllocator &alloc);
virtual ~ObExprSubQueryGreaterEqual();
virtual int cg_expr(ObExprCGCtx& op_cg_ctx, const ObRawExpr& raw_expr, ObExpr& rt_expr) const override
virtual int cg_expr(ObExprCGCtx &op_cg_ctx,
const ObRawExpr &raw_expr,
ObExpr &rt_expr) const override
{
return ObSubQueryRelationalExpr::cg_expr(op_cg_ctx, raw_expr, rt_expr);
}
private:
virtual int compare_single_row(const common::ObNewRow& left_row, const common::ObNewRow& right_row,
common::ObExprCtx& expr_ctx, common::ObObj& result) const override;
private:
DISALLOW_COPY_AND_ASSIGN(ObExprSubQueryGreaterEqual);
};
} // namespace sql
} // namespace oceanbase
#endif // OCEANBASE_SQL_OB_EXPR_SUBQUERY_GREATER_EQUAL_H_
#endif //OCEANBASE_SQL_OB_EXPR_SUBQUERY_GREATER_EQUAL_H_