1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-19 23:22:23 +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:
Daniel Gustafsson
2024-10-31 11:38:03 +01:00
parent 2b9b8ebbf8
commit fb7e27abfb
4 changed files with 6 additions and 6 deletions

View File

@@ -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