Fix ignore in subquery case.

This commit is contained in:
totaj
2024-01-29 20:58:12 +08:00
parent fb08db8980
commit ccba122b27
4 changed files with 18 additions and 1 deletions

View File

@ -77,6 +77,7 @@ ParseState* make_parsestate(ParseState* parentParseState)
pstate->p_bind_hook_state = parentParseState->p_bind_hook_state;
pstate->p_bind_describe_hook = parentParseState->p_bind_describe_hook;
pstate->p_describeco_hook_state = parentParseState->p_describeco_hook_state;
pstate->p_has_ignore = parentParseState->p_has_ignore;
}
return pstate;