mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Initialize missing fields in CreateExecutorState()
d47cbf474eandcbc127917eforgot to initialize a few fields they introduced in the EState, so do that now. Author: Melanie Plageman <melanieplageman@gmail.com> Reviewed-by: Chao Li <li.evan.chao@gmail.com> Discussion: https://postgr.es/m/F5CDD1B5-628C-44A1-9F85-3958C626F6A9%40gmail.com
This commit is contained in:
parent
cd083b54bd
commit
a3511443e5
1 changed files with 3 additions and 0 deletions
|
|
@ -119,6 +119,9 @@ CreateExecutorState(void)
|
|||
estate->es_rteperminfos = NIL;
|
||||
estate->es_plannedstmt = NULL;
|
||||
estate->es_part_prune_infos = NIL;
|
||||
estate->es_part_prune_states = NIL;
|
||||
estate->es_part_prune_results = NIL;
|
||||
estate->es_unpruned_relids = NULL;
|
||||
|
||||
estate->es_junkFilter = NULL;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue