summaryrefslogtreecommitdiff
path: root/src/backend/executor/execExprInterp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/executor/execExprInterp.c')
-rw-r--r--src/backend/executor/execExprInterp.c6
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