Initialize missing fields in CreateExecutorState()

d47cbf474e and cbc127917e forgot 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:
Melanie Plageman 2026-03-15 10:12:16 -04:00
parent cd083b54bd
commit a3511443e5

View file

@ -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;