patch 4.0
This commit is contained in:
@ -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_
|
||||
|
||||
Reference in New Issue
Block a user