Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
1765522f
O
oceanbase
项目概览
Metz
/
oceanbase
与 Fork 源项目一致
Fork自
oceanbase / oceanbase
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
O
oceanbase
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
1765522f
编写于
9月 22, 2021
作者:
B
br0
提交者:
wangzelin.wzl
9月 22, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix enumset cast to time in static typing engine
上级
b2e66c1c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
1 deletion
+14
-1
src/sql/engine/expr/ob_expr_cast.cpp
src/sql/engine/expr/ob_expr_cast.cpp
+13
-1
src/sql/resolver/expr/ob_raw_expr_wrap_enum_set.cpp
src/sql/resolver/expr/ob_raw_expr_wrap_enum_set.cpp
+1
-0
未找到文件。
src/sql/engine/expr/ob_expr_cast.cpp
浏览文件 @
1765522f
...
@@ -368,7 +368,19 @@ int ObExprCast::calc_result_type2(
...
@@ -368,7 +368,19 @@ int ObExprCast::calc_result_type2(
OZ
(
ObRawExprUtils
::
setup_extra_cast_utf8_type
(
dst_type
,
dst_type_utf8
));
OZ
(
ObRawExprUtils
::
setup_extra_cast_utf8_type
(
dst_type
,
dst_type_utf8
));
OX
(
type1
.
set_calc_meta
(
dst_type_utf8
.
get_obj_meta
()));
OX
(
type1
.
set_calc_meta
(
dst_type_utf8
.
get_obj_meta
()));
}
else
{
}
else
{
type1
.
set_calc_meta
(
type1
.
get_obj_meta
());
bool
need_warp
=
false
;
if
(
ob_is_enumset_tc
(
type1
.
get_type
()))
{
// For enum/set type, need to check whether warp to string is required.
if
(
OB_FAIL
(
ObRawExprUtils
::
need_wrap_to_string
(
type1
.
get_type
(),
type1
.
get_calc_type
(),
false
,
need_warp
)))
{
LOG_WARN
(
"need_wrap_to_string failed"
,
K
(
ret
),
K
(
type1
));
}
}
else
if
(
OB_LIKELY
(
need_warp
))
{
// need_warp is true, no-op and keep type1's calc_type is dst_type. It will be wrapped
// to string in ObRawExprWrapEnumSet::visit(ObSysFunRawExpr &expr) later.
}
else
{
// need_warp is false, set calc_type to type1 itself.
type1
.
set_calc_meta
(
type1
.
get_obj_meta
());
}
}
}
}
else
{
}
else
{
// no need to set cast mode, already setup while deduce type.
// no need to set cast mode, already setup while deduce type.
...
...
src/sql/resolver/expr/ob_raw_expr_wrap_enum_set.cpp
浏览文件 @
1765522f
...
@@ -721,6 +721,7 @@ int ObRawExprWrapEnumSet::visit(ObSysFunRawExpr& expr)
...
@@ -721,6 +721,7 @@ int ObRawExprWrapEnumSet::visit(ObSysFunRawExpr& expr)
}
else
if
(
ob_is_enumset_tc
(
param_expr
->
get_data_type
()))
{
}
else
if
(
ob_is_enumset_tc
(
param_expr
->
get_data_type
()))
{
ObObjType
calc_type
=
expr
.
get_input_types
().
at
(
i
).
get_calc_type
();
ObObjType
calc_type
=
expr
.
get_input_types
().
at
(
i
).
get_calc_type
();
ObSysFunRawExpr
*
wrapped_expr
=
NULL
;
ObSysFunRawExpr
*
wrapped_expr
=
NULL
;
// Enumset warp to string in CAST expr will be handled here.
if
(
OB_FAIL
(
wrap_type_to_str_if_necessary
(
if
(
OB_FAIL
(
wrap_type_to_str_if_necessary
(
param_expr
,
calc_type
,
get_current_level
(),
is_same_need
,
wrapped_expr
)))
{
param_expr
,
calc_type
,
get_current_level
(),
is_same_need
,
wrapped_expr
)))
{
LOG_WARN
(
"failed to wrap_type_to_str_if_necessary"
,
K
(
i
),
K
(
expr
),
K
(
ret
));
LOG_WARN
(
"failed to wrap_type_to_str_if_necessary"
,
K
(
i
),
K
(
expr
),
K
(
ret
));
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录