sync code

This commit is contained in:
LiHeng
2022-03-04 23:22:16 +08:00
parent d26ec83e7b
commit de223dd152
2618 changed files with 382415 additions and 163216 deletions

View File

@ -70,6 +70,10 @@ ParseState* make_parsestate(ParseState* parentParseState)
pstate->p_create_proc_operator_hook = parentParseState->p_create_proc_operator_hook;
pstate->p_create_proc_insert_hook = parentParseState->p_create_proc_insert_hook;
pstate->p_cl_hook_state = parentParseState->p_cl_hook_state;
pstate->p_bind_variable_columnref_hook = parentParseState->p_bind_variable_columnref_hook;
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;
}
return pstate;