mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
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
This commit is contained in:
@ -4686,9 +4686,9 @@ ExecEvalJsonCoercion(ExprState *state, ExprEvalStep *op,
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Prepare to call json_populate_type() to coerce the boolean result of
|
* Prepare to call json_populate_type() to coerce the boolean result of
|
||||||
* JSON_EXISTS_OP to the target type. If the the target type is integer
|
* JSON_EXISTS_OP to the target type. If the target type is integer or a
|
||||||
* or a domain over integer, call the boolean-to-integer cast function
|
* domain over integer, call the boolean-to-integer cast function instead,
|
||||||
* instead, because the integer's input function (which is what
|
* because the integer's input function (which is what
|
||||||
* json_populate_type() calls to coerce to scalar target types) doesn't
|
* json_populate_type() calls to coerce to scalar target types) doesn't
|
||||||
* accept boolean literals as valid input. We only have a special case
|
* accept boolean literals as valid input. We only have a special case
|
||||||
* for integer and domains thereof as it seems common to use those types
|
* for integer and domains thereof as it seems common to use those types
|
||||||
|
@ -281,7 +281,7 @@ new_page:
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If serial, we can error out if the the prefetch block doesn't stay
|
* If serial, we can error out if the prefetch block doesn't stay
|
||||||
* ahead of the current block.
|
* ahead of the current block.
|
||||||
*/
|
*/
|
||||||
if (node->pstate == NULL &&
|
if (node->pstate == NULL &&
|
||||||
|
@ -293,7 +293,7 @@ transform_MERGE_to_join(Query *parse)
|
|||||||
* join (in the ModifyTable node) to distinguish between the MATCHED and
|
* join (in the ModifyTable node) to distinguish between the MATCHED and
|
||||||
* NOT MATCHED BY SOURCE cases -- see ExecMergeMatched(). Note that this
|
* NOT MATCHED BY SOURCE cases -- see ExecMergeMatched(). Note that this
|
||||||
* creates a modified copy of the join condition, for use above the join,
|
* 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)
|
if (jointype == JOIN_LEFT || jointype == JOIN_FULL)
|
||||||
{
|
{
|
||||||
|
@ -3145,7 +3145,7 @@ LaunchMissingBackgroundProcesses(void)
|
|||||||
* The checkpointer and the background writer are active from the start,
|
* The checkpointer and the background writer are active from the start,
|
||||||
* until shutdown is initiated.
|
* until shutdown is initiated.
|
||||||
*
|
*
|
||||||
* (If the checkpointer is not running when we enter the the PM_SHUTDOWN
|
* (If the checkpointer is not running when we enter the PM_SHUTDOWN
|
||||||
* state, it is launched one more time to perform the shutdown checkpoint.
|
* state, it is launched one more time to perform the shutdown checkpoint.
|
||||||
* That's done in PostmasterStateMachine(), not here.)
|
* That's done in PostmasterStateMachine(), not here.)
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user