diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-10-31 11:38:03 +0100 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-10-31 11:38:03 +0100 |
commit | fb7e27abfbd4e1bae44ce29f5f2c6f6d1aabb5e2 (patch) | |
tree | e5c976b367e4b04070451cc3026a8208c97e705d /src/backend/optimizer/prep/prepjointree.c | |
parent | 2b9b8ebbf8a2f621d1cecc4db759700f9ce6ce66 (diff) |
Remove duplicate words in comments
A few comments contained duplicate "the" in sentences, fix by removing
one occurrence.
Author: Vignesh C <vignesh21@gmail.com>
Discussion: https://postgr.es/m/CALDaNm2aEEiPwGJmPdzBxROVvs8n75yCjKz4K1f1B2TdWpzxTA@mail.gmail.com
Diffstat (limited to 'src/backend/optimizer/prep/prepjointree.c')
-rw-r--r-- | src/backend/optimizer/prep/prepjointree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/optimizer/prep/prepjointree.c b/src/backend/optimizer/prep/prepjointree.c index 4d7f972caf1..33b10d72cb5 100644 --- a/src/backend/optimizer/prep/prepjointree.c +++ b/src/backend/optimizer/prep/prepjointree.c @@ -293,7 +293,7 @@ transform_MERGE_to_join(Query *parse) * join (in the ModifyTable node) to distinguish between the MATCHED and * NOT MATCHED BY SOURCE cases -- see ExecMergeMatched(). Note that this * creates a modified copy of the join condition, for use above the join, - * without modifying the the original join condition, inside the join. + * without modifying the original join condition, inside the join. */ if (jointype == JOIN_LEFT || jointype == JOIN_FULL) { |