diff options
author | David Rowley <drowley@postgresql.org> | 2021-07-06 12:38:50 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2021-07-06 12:38:50 +1200 |
commit | 9ee91cc583802c6507fbc31c348a79e63a10f956 (patch) | |
tree | 7bd4501aa9b41220ccb20e54397e820e32a4d830 | |
parent | 53d86957e980efa06f15232b8cff430d4cc6dd64 (diff) | |
download | postgresql-9ee91cc583802c6507fbc31c348a79e63a10f956.tar.gz postgresql-9ee91cc583802c6507fbc31c348a79e63a10f956.zip |
Fix typo in comment
Author: James Coleman
Discussion: https://postgr.es/m/CAAaqYe8f8ENA0i1PdBtUNWDd2sxHSMgscNYbjhaXMuAdfBrZcg@mail.gmail.com
-rw-r--r-- | src/backend/optimizer/path/allpaths.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/optimizer/path/allpaths.c b/src/backend/optimizer/path/allpaths.c index 353454b183e..17febfff8aa 100644 --- a/src/backend/optimizer/path/allpaths.c +++ b/src/backend/optimizer/path/allpaths.c @@ -2794,8 +2794,8 @@ generate_useful_gather_paths(PlannerInfo *root, RelOptInfo *rel, bool override_r * gather merge path for every subpath that has pathkeys present. * * But since the subpath is already sorted, we know we don't need - * to consider adding a sort (other either kind) on top of it, so - * we can continue here. + * to consider adding a sort (full or incremental) on top of it, + * so we can continue here. */ if (is_sorted) continue; |