diff options
Diffstat (limited to 'src/include/nodes/relation.h')
-rw-r--r-- | src/include/nodes/relation.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index 41caf873fb4..adb42650479 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -687,8 +687,12 @@ typedef struct RelOptInfo * involving this rel */ bool has_eclass_joins; /* T means joininfo is incomplete */ - /* used by "other" relations */ - Relids top_parent_relids; /* Relids of topmost parents */ + /* used by partitionwise joins: */ + bool consider_partitionwise_join; /* consider partitionwise + * join paths? (if + * partitioned rel) */ + Relids top_parent_relids; /* Relids of topmost parents (if "other" + * rel) */ /* used for partitioned relations */ PartitionScheme part_scheme; /* Partitioning scheme. */ |