fix data type bugs in transformer

This commit is contained in:
yinyj17
2023-08-25 08:40:28 +00:00
committed by ob-robot
parent 51e87fbb70
commit 56ee77a670
9 changed files with 470 additions and 283 deletions

View File

@ -981,6 +981,8 @@ int ObSqlPlan::print_constraint_info(char *buf,
ret = BUF_PRINTF("FALSE");
} else if (PRE_CALC_RESULT_NO_WILDCARD == info.expect_result_) {
ret = BUF_PRINTF("NO_WILDCARD");
} else if (PRE_CALC_ERROR == info.expect_result_) {
ret = BUF_PRINTF("ERROR");
} else if (PRE_CALC_PRECISE == info.expect_result_) {
ret = BUF_PRINTF("PRECISE");
} else if (PRE_CALC_NOT_PRECISE == info.expect_result_) {