mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Consistently use the term 'partitioned rel' in partprune comments
We were using 'partition rel' in a few places, which is quite confusing. Author: Amit Langote Reviewed-by: David Rowley Reviewed-by: Michaël Paquier Discussion: https://postgr.es/m/fd256561-31a2-4b7e-cd84-d8241e7ebc3f@lab.ntt.co.jp
This commit is contained in:
@ -74,7 +74,8 @@ typedef struct PartitionPruneContext
|
||||
#define PruneCxtStateIdx(partnatts, step_id, keyno) \
|
||||
((partnatts) * (step_id) + (keyno))
|
||||
|
||||
extern List *make_partition_pruneinfo(PlannerInfo *root, List *partition_rels,
|
||||
extern List *make_partition_pruneinfo(PlannerInfo *root,
|
||||
List *partitioned_rels,
|
||||
List *subpaths, List *prunequal);
|
||||
extern Relids prune_append_rel_partitions(RelOptInfo *rel);
|
||||
extern Bitmapset *get_matching_partitions(PartitionPruneContext *context,
|
||||
|
Reference in New Issue
Block a user