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

@ -17,50 +17,38 @@
//#include "sql/engine/expr/ob_expr_promotion_util.h"
#include "sql/engine/expr/ob_expr_equal.h"
namespace oceanbase {
namespace oceanbase
{
using namespace common;
namespace sql {
namespace sql
{
ObExprNotEqual::ObExprNotEqual(ObIAllocator& alloc) : ObRelationalExprOperator(alloc, T_OP_NE, N_NOT_EQUAL, 2)
{}
ObExprNotEqual::ObExprNotEqual(ObIAllocator &alloc)
: ObRelationalExprOperator(alloc, T_OP_NE, N_NOT_EQUAL, 2)
{
}
int ObExprNotEqual::calc_result_type2(
ObExprResType& type, ObExprResType& type1, ObExprResType& type2, common::ObExprTypeCtx& type_ctx) const
int ObExprNotEqual::calc_result_type2(ObExprResType &type,
ObExprResType &type1,
ObExprResType &type2,
common::ObExprTypeCtx &type_ctx) const
{
int ret = OB_SUCCESS;
if (lib::is_oracle_mode() && type1.is_ext() && type2.is_ext()) {
type.set_int32(); // not tinyint, compatible with MySQL
type.set_precision(DEFAULT_PRECISION_FOR_BOOL);
type.set_scale(DEFAULT_SCALE_FOR_INTEGER);
type.set_calc_type(type1.get_calc_type());
type.set_result_flag(OB_MYSQL_NOT_NULL_FLAG);
if (is_called_in_sql() && lib::is_oracle_mode() && (type1.is_lob()
|| type1.is_lob_locator())) {
ret = OB_ERR_INVALID_TYPE_FOR_OP;
LOG_USER_ERROR(OB_ERR_INVALID_TYPE_FOR_OP, ob_obj_type_str(type1.get_type()),
ob_obj_type_str(type2.get_type()));
} else if (is_called_in_sql() && lib::is_oracle_mode() && (type2.is_lob()
|| type2.is_lob_locator())) {
ret = OB_ERR_INVALID_TYPE_FOR_OP;
LOG_USER_ERROR(OB_ERR_INVALID_TYPE_FOR_OP, ob_obj_type_str(type1.get_type()),
ob_obj_type_str(type2.get_type()));
} else {
ret = ObRelationalExprOperator::calc_result_type2(type, type1, type2, type_ctx);
}
return ret;
}
int ObExprNotEqual::calc_result2(ObObj& result, const ObObj& obj1, const ObObj& obj2, ObExprCtx& expr_ctx) const
{
int ret = OB_SUCCESS;
if (lib::is_oracle_mode() && obj1.get_meta().is_ext() && obj1.get_meta().is_ext()) {
ret = OB_NOT_SUPPORTED;
} else {
ret = ObRelationalExprOperator::calc_result2(result, obj1, obj2, expr_ctx, false, CO_NE);
}
return ret;
}
int ObExprNotEqual::calc_resultN(ObObj& result, const ObObj* objs_array, int64_t param_num, ObExprCtx& expr_ctx) const
{
return ObRelationalExprOperator::calc_resultN(result, objs_array, param_num, expr_ctx, false, CO_NE);
}
int ObExprNotEqual::calc(
ObObj& result, const ObObj& obj1, const ObObj& obj2, const ObCompareCtx& cmp_ctx, ObCastCtx& cast_ctx)
{
return ObRelationalExprOperator::compare(result, obj1, obj2, cmp_ctx, cast_ctx, CO_NE);
}
} // namespace sql
} // namespace oceanbase