summaryrefslogtreecommitdiff
path: root/src/include/nodes/relation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/nodes/relation.h')
-rw-r--r--src/include/nodes/relation.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h
index 902e9faf12..077e1ceedd 100644
--- a/src/include/nodes/relation.h
+++ b/src/include/nodes/relation.h
@@ -577,7 +577,8 @@ typedef struct RelOptInfo
void *fdw_private;
/* cache space for remembering if we have proven this relation unique */
- List *unique_for_rels; /* known unique for these other relid set(s) */
+ List *unique_for_rels; /* known unique for these other relid
+ * set(s) */
List *non_unique_for_rels; /* known not unique for these set(s) */
/* used by various scans and joins: */
@@ -655,10 +656,11 @@ typedef struct IndexOptInfo
List *indextlist; /* targetlist representing index columns */
- List *indrestrictinfo;/* parent relation's baserestrictinfo list,
- * less any conditions implied by the index's
- * predicate (unless it's a target rel, see
- * comments in check_index_predicates()) */
+ List *indrestrictinfo; /* parent relation's baserestrictinfo
+ * list, less any conditions implied by
+ * the index's predicate (unless it's a
+ * target rel, see comments in
+ * check_index_predicates()) */
bool predOK; /* true if index predicate matches query */
bool unique; /* true if a unique index */