issue修复:ignore插入时,若插入值类型与目标类型无转换规则,目标类型的默认零值无法被插入的问题修复

This commit is contained in:
teooooozhang
2022-07-27 10:36:22 +08:00
parent b08bcca779
commit e91ae0c8cc
8 changed files with 196 additions and 33 deletions

View File

@ -58,6 +58,7 @@ ParseState* make_parsestate(ParseState* parentParseState)
pstate->ignoreplus = false;
pstate->p_plusjoin_rte_info = NULL;
pstate->p_rawdefaultlist = NIL;
pstate->p_has_ignore = false;
if (parentParseState != NULL) {
pstate->p_sourcetext = parentParseState->p_sourcetext;