Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
18ae717c
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,发现更多精彩内容 >>
提交
18ae717c
编写于
9月 16, 2021
作者:
C
Charles0429
提交者:
wangzelin.wzl
9月 16, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix bug of creating expression index on new added column
上级
d392312a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
26 addition
and
2 deletion
+26
-2
src/storage/ob_partition_storage.cpp
src/storage/ob_partition_storage.cpp
+26
-2
未找到文件。
src/storage/ob_partition_storage.cpp
浏览文件 @
18ae717c
...
...
@@ -5669,6 +5669,7 @@ int ObPartitionStorage::local_sort_index_by_range(
ObTableAccessContext
access_ctx
;
ObBlockCacheWorkingSet
block_cache_ws
;
ObStoreCtx
ctx
;
ObStoreRow
result_row
;
if
(
OB_SUCC
(
ret
))
{
if
(
OB_FAIL
(
access_param
.
out_col_desc_param_
.
init
()))
{
LOG_WARN
(
"init out cols fail"
,
K
(
ret
));
...
...
@@ -5685,6 +5686,17 @@ int ObPartitionStorage::local_sort_index_by_range(
}
}
if
(
OB_SUCC
(
ret
))
{
if
(
NULL
==
(
cells_buf
=
reinterpret_cast
<
ObObj
*>
(
allocator
.
alloc
(
sizeof
(
ObObj
)
*
extended_col_ids
.
count
()))))
{
ret
=
OB_ALLOCATE_MEMORY_FAILED
;
STORAGE_LOG
(
ERROR
,
"failed to alloc cells buf"
,
K
(
ret
),
K
(
extended_col_ids
.
count
()));
}
else
{
result_row
.
flag_
=
ObActionFlag
::
OP_ROW_EXIST
;
result_row
.
row_val_
.
cells_
=
new
ObObj
[
extended_col_ids
.
count
()];
result_row
.
row_val_
.
count_
=
extended_col_ids
.
count
();
}
}
if
(
OB_SUCC
(
ret
))
{
common
::
ObVersionRange
trans_version_range
;
trans_version_range
.
snapshot_version_
=
index_param
.
snapshot_version_
;
...
...
@@ -5782,18 +5794,30 @@ int ObPartitionStorage::local_sort_index_by_range(
t2
=
ObTimeUtility
::
current_time
();
get_next_row_time
+=
t2
-
t1
;
DEBUG_SYNC
(
BEFORE_BUILD_LOCAL_INDEX_REFRESH_TABLES_MID
);
// fill default value if column is not generated column
for
(
int64_t
k
=
0
;
OB_SUCC
(
ret
)
&&
k
<
row
->
row_val_
.
count_
;
++
k
)
{
if
(
row
->
row_val_
.
cells_
[
k
].
is_nop_value
())
{
if
(
k
>=
org_col_ids
.
count
())
{
// do nothing
}
else
if
(
nullptr
==
dependent_exprs
.
at
(
k
))
{
result_row
.
row_val_
.
cells_
[
k
]
=
default_row
.
row_val_
.
cells_
[
k
];
}
}
else
{
result_row
.
row_val_
.
cells_
[
k
]
=
row
->
row_val_
.
cells_
[
k
];
}
}
for
(
int64_t
k
=
0
;
OB_SUCC
(
ret
)
&&
k
<
org_col_ids
.
count
();
++
k
)
{
if
(
row
->
row_val_
.
cells_
[
k
].
is_nop_value
())
{
if
(
NULL
!=
dependent_exprs
.
at
(
k
))
{
// generated column
if
(
OB_FAIL
(
sql
::
ObSQLUtils
::
calc_sql_expression
(
dependent_exprs
.
at
(
k
),
*
table_schema
,
org_extended_col_ids
,
r
ow
->
row_val_
,
r
esult_row
.
row_val_
,
calc_buf
,
expr_ctx
,
tmp_row
.
row_val_
.
cells_
[
k
])))
{
STORAGE_LOG
(
WARN
,
"failed to calc expr"
,
K
(
row
->
row_val_
),
K
(
org_col_ids
),
K
(
dependent_exprs
.
at
(
k
)),
K
(
ret
));
K
(
dependent_exprs
.
at
(
k
)),
K
(
ret
)
,
K
(
result_row
.
row_val_
)
);
}
else
if
(
OB_UNLIKELY
(
!
tmp_row
.
row_val_
.
cells_
[
k
].
is_null
()
&&
!
sql
::
ObSQLUtils
::
is_same_type_for_compare
(
gen_col_schemas
.
at
(
k
)
->
get_meta_type
(),
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录