init push

This commit is contained in:
oceanbase-admin
2021-05-31 22:56:52 +08:00
commit cea7de1475
7020 changed files with 5689869 additions and 0 deletions

View File

@ -0,0 +1,76 @@
/**
* Copyright (c) 2021 OceanBase
* OceanBase CE is licensed under Mulan PubL v2.
* You can use this software according to the terms and conditions of the Mulan PubL v2.
* You may obtain a copy of Mulan PubL v2 at:
* http://license.coscl.org.cn/MulanPubL-2.0
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PubL v2 for more details.
*/
#define USING_LOG_PREFIX SQL_ENG
#include "lib/oblog/ob_log.h"
#include "lib/number/ob_number_v2.h"
#include "sql/engine/expr/ob_expr_cos.h"
#include "sql/engine/expr/ob_expr_util.h"
#include "sql/parser/ob_item_type.h"
#include "sql/session/ob_sql_session_info.h"
#include <math.h>
namespace oceanbase {
using namespace common;
using namespace common::number;
namespace sql {
ObExprCos::ObExprCos(ObIAllocator& alloc) : ObFuncExprOperator(alloc, T_FUN_SYS_COS, N_COS, 1, NOT_ROW_DIMENSION)
{}
ObExprCos::~ObExprCos()
{}
int ObExprCos::calc_result_type1(ObExprResType& type, ObExprResType& radian, ObExprTypeCtx& type_ctx) const
{
return calc_trig_function_result_type1(type, radian, type_ctx);
}
int ObExprCos::calc_result1(ObObj& result, const ObObj& radian_obj, ObExprCtx& expr_ctx) const
{
int ret = OB_SUCCESS;
if (radian_obj.is_null_oracle()) {
result.set_null();
} else if (OB_ISNULL(expr_ctx.calc_buf_)) {
ret = OB_NOT_INIT;
LOG_WARN("expr_ctx.calc_buf_ is NULL", K(ret));
} else if (radian_obj.is_number()) {
ObNumber num;
if (OB_FAIL(radian_obj.get_number(num))) {
LOG_WARN("get_number failed", K(radian_obj));
} else if (OB_FAIL(num.cos(num, *(expr_ctx.calc_buf_)))) {
LOG_WARN("taylor_series_cos failed", K(num), K(ret));
} else {
result.set_number(num);
}
} else if (radian_obj.is_double()) {
double arg = radian_obj.get_double();
double res = cos(arg);
result.set_double(res);
}
return ret;
}
DEF_CALC_TRIGONOMETRIC_EXPR(cos, false, OB_SUCCESS);
int ObExprCos::cg_expr(ObExprCGCtx& expr_cg_ctx, const ObRawExpr& raw_expr, ObExpr& rt_expr) const
{
int ret = OB_SUCCESS;
UNUSED(expr_cg_ctx);
UNUSED(raw_expr);
rt_expr.eval_func_ = calc_cos_expr;
return ret;
}
} // namespace sql
} // namespace oceanbase