diff options
Diffstat (limited to 'src/backend/optimizer/util')
-rw-r--r-- | src/backend/optimizer/util/pathnode.c | 4 | ||||
-rw-r--r-- | src/backend/optimizer/util/restrictinfo.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/optimizer/util/pathnode.c b/src/backend/optimizer/util/pathnode.c index 1e7aac95ef4..9e99c9d9d7b 100644 --- a/src/backend/optimizer/util/pathnode.c +++ b/src/backend/optimizer/util/pathnode.c @@ -412,8 +412,8 @@ create_seqscan_path(PlannerInfo *root, RelOptInfo *rel) * 'index' is a usable index. * 'clause_groups' is a list of lists of RestrictInfo nodes * to be used as index qual conditions in the scan. - * 'indexorderbys' is a list of bare expressions (no RestrictInfos) - * to be used as index ordering operators in the scan. + * 'indexorderbys' is a list of lists of lists of bare expressions (not + * RestrictInfos) to be used as index ordering operators. * 'pathkeys' describes the ordering of the path. * 'indexscandir' is ForwardScanDirection or BackwardScanDirection * for an ordered index, or NoMovementScanDirection for diff --git a/src/backend/optimizer/util/restrictinfo.c b/src/backend/optimizer/util/restrictinfo.c index 63ff431900e..8e3d4bb8453 100644 --- a/src/backend/optimizer/util/restrictinfo.c +++ b/src/backend/optimizer/util/restrictinfo.c @@ -630,7 +630,7 @@ extract_actual_join_clauses(List *restrictinfo_list, * being used in an inner indexscan need not be checked again at the join. * * "Redundant" means either equal() or derived from the same EquivalenceClass. - * We have to check the latter because indxqual.c may select different derived + * We have to check the latter because indxpath.c may select different derived * clauses than were selected by generate_join_implied_equalities(). * * Note that we are *not* checking for local redundancies within the given |