Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
eb8952d1
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,发现更多精彩内容 >>
提交
eb8952d1
编写于
6月 29, 2022
作者:
W
wangt1xiuyi
提交者:
wangzelin.wzl
6月 29, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix some cases
上级
214cc166
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
68 deletion
+14
-68
src/sql/engine/expr/ob_expr_regexp_context.cpp
src/sql/engine/expr/ob_expr_regexp_context.cpp
+14
-68
未找到文件。
src/sql/engine/expr/ob_expr_regexp_context.cpp
浏览文件 @
eb8952d1
...
...
@@ -848,76 +848,22 @@ int ObExprRegexContext::pre_process_replace_str(const ObString& text, const ObSt
before_is_escape
=
true
;
need_copy_last
=
(
length_to
-
1
!=
i
);
}
else
if
(
!
before_is_escape
)
{
switch
(
to_ptr
[
i
+
1
])
{
case
'1'
:
MEMCPY
(
tmp_buf
,
subexpr_array
.
at
(
0
).
ptr
(),
subexpr_array
.
at
(
0
).
length
());
tmp_buf
+=
subexpr_array
.
at
(
0
).
length
();
real_tot_length
+=
subexpr_array
.
at
(
0
).
length
();
if
(
to_ptr
[
i
+
1
]
>=
'1'
&&
to_ptr
[
i
+
1
]
<=
'9'
)
{
int64_t
idx
=
to_ptr
[
i
+
1
]
-
'1'
;
if
(
OB_UNLIKELY
(
idx
<
0
||
idx
>=
subexpr_array
.
count
()))
{
ret
=
OB_ERR_UNEXPECTED
;
LOG_WARN
(
"get unexpected error"
,
K
(
ret
),
K
(
idx
),
K
(
subexpr_array
));
}
else
{
MEMCPY
(
tmp_buf
,
subexpr_array
.
at
(
idx
).
ptr
(),
subexpr_array
.
at
(
idx
).
length
());
tmp_buf
+=
subexpr_array
.
at
(
idx
).
length
();
real_tot_length
+=
subexpr_array
.
at
(
idx
).
length
();
++
i
;
need_copy_last
=
(
length_to
-
1
!=
i
);
break
;
case
'2'
:
MEMCPY
(
tmp_buf
,
subexpr_array
.
at
(
1
).
ptr
(),
subexpr_array
.
at
(
1
).
length
());
tmp_buf
+=
subexpr_array
.
at
(
1
).
length
();
real_tot_length
+=
subexpr_array
.
at
(
1
).
length
();
++
i
;
need_copy_last
=
(
length_to
-
1
!=
i
);
break
;
case
'3'
:
MEMCPY
(
tmp_buf
,
subexpr_array
.
at
(
2
).
ptr
(),
subexpr_array
.
at
(
2
).
length
());
tmp_buf
+=
subexpr_array
.
at
(
2
).
length
();
real_tot_length
+=
subexpr_array
.
at
(
2
).
length
();
++
i
;
need_copy_last
=
(
length_to
-
1
!=
i
);
break
;
case
'4'
:
MEMCPY
(
tmp_buf
,
subexpr_array
.
at
(
3
).
ptr
(),
subexpr_array
.
at
(
3
).
length
());
tmp_buf
+=
subexpr_array
.
at
(
3
).
length
();
real_tot_length
+=
subexpr_array
.
at
(
3
).
length
();
++
i
;
need_copy_last
=
(
length_to
-
1
!=
i
);
break
;
case
'5'
:
MEMCPY
(
tmp_buf
,
subexpr_array
.
at
(
4
).
ptr
(),
subexpr_array
.
at
(
4
).
length
());
tmp_buf
+=
subexpr_array
.
at
(
4
).
length
();
real_tot_length
+=
subexpr_array
.
at
(
4
).
length
();
++
i
;
need_copy_last
=
(
length_to
-
1
!=
i
);
break
;
case
'6'
:
MEMCPY
(
tmp_buf
,
subexpr_array
.
at
(
5
).
ptr
(),
subexpr_array
.
at
(
5
).
length
());
tmp_buf
+=
subexpr_array
.
at
(
5
).
length
();
real_tot_length
+=
subexpr_array
.
at
(
5
).
length
();
++
i
;
need_copy_last
=
(
length_to
-
1
!=
i
);
break
;
case
'7'
:
MEMCPY
(
tmp_buf
,
subexpr_array
.
at
(
6
).
ptr
(),
subexpr_array
.
at
(
6
).
length
());
tmp_buf
+=
subexpr_array
.
at
(
6
).
length
();
real_tot_length
+=
subexpr_array
.
at
(
6
).
length
();
++
i
;
need_copy_last
=
(
length_to
-
1
!=
i
);
break
;
case
'8'
:
MEMCPY
(
tmp_buf
,
subexpr_array
.
at
(
7
).
ptr
(),
subexpr_array
.
at
(
7
).
length
());
tmp_buf
+=
subexpr_array
.
at
(
7
).
length
();
real_tot_length
+=
subexpr_array
.
at
(
7
).
length
();
++
i
;
need_copy_last
=
(
length_to
-
1
!=
i
);
break
;
case
'9'
:
MEMCPY
(
tmp_buf
,
subexpr_array
.
at
(
8
).
ptr
(),
subexpr_array
.
at
(
8
).
length
());
tmp_buf
+=
subexpr_array
.
at
(
8
).
length
();
real_tot_length
+=
subexpr_array
.
at
(
8
).
length
();
++
i
;
need_copy_last
=
(
length_to
-
1
!=
i
);
break
;
break
;
default:
MEMCPY
(
tmp_buf
,
to_ptr
+
i
,
1
);
tmp_buf
+=
1
;
++
real_tot_length
;
break
;
}
}
else
{
MEMCPY
(
tmp_buf
,
to_ptr
+
i
,
1
);
tmp_buf
+=
1
;
++
real_tot_length
;
}
}
else
{
MEMCPY
(
tmp_buf
,
to_ptr
+
i
,
1
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录