提交 0d7efce1 编写于 作者: B br0 提交者: wangzelin.wzl

Fix white scan errors at ob_number_v2

上级 2303f8e5
......@@ -6309,8 +6309,9 @@ int ObNumber::power(
int abs_exponent = std::abs(exponent);
number::ObNumber base_product;
base_product.from(*this, one_time_allocator);
if ((abs_exponent & 1) != 0) {
if (OB_FAIL(base_product.from(*this, one_time_allocator))) {
LOG_WARN("failed: deep copy this to base_product", K(ret));
} else if ((abs_exponent & 1) != 0) {
if (OB_FAIL(result.from(*this, one_time_allocator))) {
LOG_WARN("failed: deep copy base to result", K(ret));
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册