From 162e65db93ca528cd50be9d29640acb9e662871c Mon Sep 17 00:00:00 2001 From: jcoleman Date: Mon, 23 Jan 2023 08:27:40 -0500 Subject: [PATCH v1] Fixup incorrect comment --- src/backend/optimizer/path/allpaths.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/backend/optimizer/path/allpaths.c b/src/backend/optimizer/path/allpaths.c index c2fc568dc8..ef7c12cfe0 100644 --- a/src/backend/optimizer/path/allpaths.c +++ b/src/backend/optimizer/path/allpaths.c @@ -3427,7 +3427,8 @@ standard_join_search(PlannerInfo *root, int levels_needed, List *initial_rels) /* * Except for the topmost scan/join rel, consider gathering * partial paths. We'll do the same for the topmost scan/join rel - * once we know the final targetlist (see grouping_planner). + * once we know the final targetlist (see + * apply_scanjoin_target_to_paths). */ if (!bms_equal(rel->relids, root->all_baserels)) generate_useful_gather_paths(root, rel, false); -- 2.32.1 (Apple Git-133)