Add the index id with the non-base table path for partition join filter

This commit is contained in:
qianchanger
2023-04-03 18:10:44 +08:00
committed by ob-robot
parent 44300b6d39
commit 5177073cbf
2 changed files with 3 additions and 5 deletions

View File

@ -1517,11 +1517,8 @@ int ObSqlModeVar::do_check_and_convert(ObExecContext &ctx,
LOG_ERROR("fail to get varchar", K(ret), K(in_val));
}
} else {
ret = OB_ERR_WRONG_VALUE_FOR_VAR;
int log_ret = OB_SUCCESS;
if (OB_SUCCESS != (log_ret = log_err_wrong_value_for_var(ret, in_val))) {
LOG_ERROR("fail to log error", K(ret), K(log_ret), K(in_val));
}
ret = OB_ERR_UNEXPECTED;
LOG_ERROR("unexpected type", K(ret), K(in_val));
}
ObString val_without_space = str_val.trim_space_only();
if (OB_FAIL(ret)) {