diff options
author | David Rowley <drowley@postgresql.org> | 2024-11-29 15:56:24 +1300 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2024-11-29 15:56:24 +1300 |
commit | b6612aedc53a6bf069eba5e356a8421ad6426486 (patch) | |
tree | 7f2f74537317c0562564384e5cc71c6a68bff768 | |
parent | 18954ce7f69b0a4725b1cf1845ed5fd3874e2a92 (diff) | |
download | postgresql-b6612aedc53a6bf069eba5e356a8421ad6426486.tar.gz postgresql-b6612aedc53a6bf069eba5e356a8421ad6426486.zip |
Fix typo in header comment for set_operation_ordered_results_useful
Reported-by: Richard Guo
Discussion: https://postgr.es/m/CAMbWs492vMy3XNjDZRtqtHfFTK6HVeDwhrEQH7eXGgF_h5Jnzw@mail.gmail.com
-rw-r--r-- | src/backend/optimizer/prep/prepunion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/optimizer/prep/prepunion.c b/src/backend/optimizer/prep/prepunion.c index f2b0bcfdf50..9c3822f19ad 100644 --- a/src/backend/optimizer/prep/prepunion.c +++ b/src/backend/optimizer/prep/prepunion.c @@ -181,7 +181,7 @@ plan_set_operations(PlannerInfo *root) * set_operation_ordered_results_useful * Return true if the given SetOperationStmt can be executed by utilizing * paths that provide sorted input according to the setop's targetlist. - * Returns false when sorted paths are not any more useful then unsorted + * Returns false when sorted paths are not any more useful than unsorted * ones. */ bool |