Fix the logs that do not need to be printed
This commit is contained in:
parent
3347f350e8
commit
255dd5c7ce
@ -401,13 +401,17 @@ int ObIntegerBaseDiffDecoder::pushdown_operator(
|
||||
filter,
|
||||
pd_filter_info,
|
||||
result_bitmap))) {
|
||||
LOG_WARN("Failed on EQ / NE operator", K(ret), K(col_ctx));
|
||||
if (OB_UNLIKELY(OB_NOT_SUPPORTED != ret)) {
|
||||
LOG_WARN("Failed on EQ / NE operator", K(ret), K(col_ctx));
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
case sql::WHITE_OP_BT: {
|
||||
if (OB_FAIL(bt_operator(parent, col_ctx, col_data, filter, pd_filter_info, result_bitmap))) {
|
||||
LOG_WARN("Failed on BT operator", K(ret), K(col_ctx));
|
||||
if (OB_UNLIKELY(OB_NOT_SUPPORTED != ret)) {
|
||||
LOG_WARN("Failed on BT operator", K(ret), K(col_ctx));
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user