Fix the logs that do not need to be printed

This commit is contained in:
obdev 2024-04-17 13:54:12 +00:00 committed by ob-robot
parent 3347f350e8
commit 255dd5c7ce

View File

@ -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;
}