diff options
author | Nathan Bossart <nathan@postgresql.org> | 2025-10-16 11:31:38 -0500 |
---|---|---|
committer | Nathan Bossart <nathan@postgresql.org> | 2025-10-16 11:31:38 -0500 |
commit | 812221b204276b884d2b14ef56aabd9e1946be81 (patch) | |
tree | 32ff424c42a9cc6bab95515eed99a48808ce242d /src/include/nodes/plannodes.h | |
parent | 41c674d2e31e8304a6edbcb5183d326798ba00f6 (diff) |
Remove partColsUpdated.
This information appears to have been unused since commit
c5b7ba4e67. We could not find any references in third-party code,
either.
Reviewed-by: Chao Li <li.evan.chao@gmail.com>
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Reviewed-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/aO_CyFRpbVMtgJWM%40nathan
Diffstat (limited to 'src/include/nodes/plannodes.h')
-rw-r--r-- | src/include/nodes/plannodes.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index 77ec2bc10b2..7cdd2b51c94 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -338,8 +338,6 @@ typedef struct ModifyTable Index nominalRelation; /* Root RT index, if partitioned/inherited */ Index rootRelation; - /* some part key in hierarchy updated? */ - bool partColsUpdated; /* integer list of RT indexes */ List *resultRelations; /* per-target-table update_colnos lists */ |