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/executor/execExprInterp.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/executor/execExprInterp.c')
-rw-r--r-- | src/backend/executor/execExprInterp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/execExprInterp.c b/src/backend/executor/execExprInterp.c index 6a7f18f6ded..30c5a19aad6 100644 --- a/src/backend/executor/execExprInterp.c +++ b/src/backend/executor/execExprInterp.c @@ -4686,9 +4686,9 @@ ExecEvalJsonCoercion(ExprState *state, ExprEvalStep *op, /* * 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 - * or a domain over integer, call the boolean-to-integer cast function - * instead, because the integer's input function (which is what + * JSON_EXISTS_OP to the target type. If the target type is integer or a + * domain over integer, call the boolean-to-integer cast function instead, + * because the integer's input function (which is what * json_populate_type() calls to coerce to scalar target types) doesn't * 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 |