Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit fb7e27a

Browse files
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
1 parent 2b9b8eb commit fb7e27a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/backend/executor/execExprInterp.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4686,9 +4686,9 @@ ExecEvalJsonCoercion(ExprState *state, ExprEvalStep *op,
46864686

46874687
/*
46884688
* Prepare to call json_populate_type() to coerce the boolean result of
4689-
* JSON_EXISTS_OP to the target type. If the the target type is integer
4690-
* or a domain over integer, call the boolean-to-integer cast function
4691-
* instead, because the integer's input function (which is what
4689+
* JSON_EXISTS_OP to the target type. If the target type is integer or a
4690+
* domain over integer, call the boolean-to-integer cast function instead,
4691+
* because the integer's input function (which is what
46924692
* json_populate_type() calls to coerce to scalar target types) doesn't
46934693
* accept boolean literals as valid input. We only have a special case
46944694
* for integer and domains thereof as it seems common to use those types

src/backend/executor/nodeBitmapHeapscan.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ BitmapHeapNext(BitmapHeapScanState *node)
281281
break;
282282

283283
/*
284-
* If serial, we can error out if the the prefetch block doesn't stay
284+
* If serial, we can error out if the prefetch block doesn't stay
285285
* ahead of the current block.
286286
*/
287287
if (node->pstate == NULL &&

src/backend/optimizer/prep/prepjointree.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ transform_MERGE_to_join(Query *parse)
293293
* join (in the ModifyTable node) to distinguish between the MATCHED and
294294
* NOT MATCHED BY SOURCE cases -- see ExecMergeMatched(). Note that this
295295
* creates a modified copy of the join condition, for use above the join,
296-
* without modifying the the original join condition, inside the join.
296+
* without modifying the original join condition, inside the join.
297297
*/
298298
if (jointype == JOIN_LEFT || jointype == JOIN_FULL)
299299
{

src/backend/postmaster/postmaster.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3145,7 +3145,7 @@ LaunchMissingBackgroundProcesses(void)
31453145
* The checkpointer and the background writer are active from the start,
31463146
* until shutdown is initiated.
31473147
*
3148-
* (If the checkpointer is not running when we enter the the PM_SHUTDOWN
3148+
* (If the checkpointer is not running when we enter the PM_SHUTDOWN
31493149
* state, it is launched one more time to perform the shutdown checkpoint.
31503150
* That's done in PostmasterStateMachine(), not here.)
31513151
*/

0 commit comments

Comments
 (0)