diff options
Diffstat (limited to 'src/include/nodes/pathnodes.h')
-rw-r--r-- | src/include/nodes/pathnodes.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/include/nodes/pathnodes.h b/src/include/nodes/pathnodes.h index 09342d128d5..a544b313d36 100644 --- a/src/include/nodes/pathnodes.h +++ b/src/include/nodes/pathnodes.h @@ -911,13 +911,11 @@ typedef struct RelOptInfo /* * cache space for remembering if we have proven this relation unique - * - * can't print unique_for_rels/non_unique_for_rels; BMSes aren't Nodes */ /* known unique for these other relid set(s) */ - List *unique_for_rels pg_node_attr(read_write_ignore); + List *unique_for_rels; /* known not unique for these set(s) */ - List *non_unique_for_rels pg_node_attr(read_write_ignore); + List *non_unique_for_rels; /* * used by various scans and joins: |