summaryrefslogtreecommitdiff
path: root/src/include/partitioning
diff options
context:
space:
mode:
authorAlvaro Herrera2018-06-20 15:43:01 +0000
committerAlvaro Herrera2018-06-20 15:43:01 +0000
commit8f97af60d19a46b37fe998be38df4e6dd0760e45 (patch)
tree54d4d38f09ac9980215d50d4fadc46e28775aa3b /src/include/partitioning
parent74cfbc8efd3f2f34d05e5c28a0299c2a7bc9c56d (diff)
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
Diffstat (limited to 'src/include/partitioning')
-rw-r--r--src/include/partitioning/partprune.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/partitioning/partprune.h b/src/include/partitioning/partprune.h
index 09147b532c..9944d2832f 100644
--- a/src/include/partitioning/partprune.h
+++ b/src/include/partitioning/partprune.h
@@ -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,