misc refinement

This commit is contained in:
chinaxing
2024-01-11 10:14:47 +00:00
committed by ob-robot
parent a7409a1184
commit 056e47167d
19 changed files with 216 additions and 29 deletions

View File

@ -887,7 +887,8 @@ int ObRawExpr::is_non_pure_sys_func_expr(bool &is_non_pure) const
|| T_FUN_SYS_LAST_INSERT_ID == type_
|| T_FUN_SYS_ROW_COUNT == type_
|| T_FUN_SYS_FOUND_ROWS == type_
|| T_FUN_SYS_CURRENT_USER_PRIV == type_) {
|| T_FUN_SYS_CURRENT_USER_PRIV == type_
|| T_FUN_SYS_TRANSACTION_ID == type_) {
is_non_pure = true;
}
}