diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2023-05-04 12:09:59 +0200 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2023-05-04 12:09:59 +0200 |
commit | 5472743d9e8583638a897b47558066167cc14583 (patch) | |
tree | 5c983ffbf40157062fe6922f1b0c448e8b7d011f /src/backend/executor/execParallel.c | |
parent | 919c486a275bcdd83d2add77da87b6edbd91418c (diff) | |
download | postgresql-5472743d9e8583638a897b47558066167cc14583.tar.gz postgresql-5472743d9e8583638a897b47558066167cc14583.zip |
Revert "Move PartitionPruneInfo out of plan nodes into PlannedStmt"
This reverts commit ec386948948c and its fixup 589bb816499e.
This change was intended to support query planning avoiding acquisition
of locks on partitions that were going to be pruned; however, the
overall project took a different direction at [1] and this bit is no
longer needed. Put things back the way they were as agreed in [2], to
avoid unnecessary complexity.
Discussion: [1] https://postgr.es/m/4191508.1674157166@sss.pgh.pa.us
Discussion: [2] https://postgr.es/m/20230502175409.kcoirxczpdha26wt@alvherre.pgsql
Diffstat (limited to 'src/backend/executor/execParallel.c')
-rw-r--r-- | src/backend/executor/execParallel.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/executor/execParallel.c b/src/backend/executor/execParallel.c index aa3f2834537..cc2b8ccab70 100644 --- a/src/backend/executor/execParallel.c +++ b/src/backend/executor/execParallel.c @@ -183,7 +183,6 @@ ExecSerializePlan(Plan *plan, EState *estate) pstmt->dependsOnRole = false; pstmt->parallelModeNeeded = false; pstmt->planTree = plan; - pstmt->partPruneInfos = estate->es_part_prune_infos; pstmt->rtable = estate->es_range_table; pstmt->permInfos = estate->es_rteperminfos; pstmt->resultRelations = NIL; |