diff options
author | Amit Kapila <akapila@postgresql.org> | 2021-04-08 10:24:00 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2021-04-08 10:24:00 +0530 |
commit | 8ffb003591ff02f59d92c36a5791307881863146 (patch) | |
tree | cc78df7c3a75dce68d5340cc2212f5c8c4648cf7 /src/backend/utils/adt/jsonfuncs.c | |
parent | 4131f755d548f74eba56285dc674f1f26e4ed6b4 (diff) | |
download | postgresql-8ffb003591ff02f59d92c36a5791307881863146.tar.gz postgresql-8ffb003591ff02f59d92c36a5791307881863146.zip |
Fix typo in jsonfuncs.c.
Author: Tatsuro Yamada
Discussion: https://postgr.es/m/7c166a60-2808-6b89-9524-feefc6233748@nttcom.co.jp_1
Diffstat (limited to 'src/backend/utils/adt/jsonfuncs.c')
-rw-r--r-- | src/backend/utils/adt/jsonfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/jsonfuncs.c b/src/backend/utils/adt/jsonfuncs.c index 511467280f2..9961d27df47 100644 --- a/src/backend/utils/adt/jsonfuncs.c +++ b/src/backend/utils/adt/jsonfuncs.c @@ -4882,7 +4882,7 @@ IteratorConcat(JsonbIterator **it1, JsonbIterator **it2, * case if target is an array. The assignment index will not be restricted by * number of elements in the array, and if there are any empty slots between * last element of the array and a new one they will be filled with nulls. If - * the index is negative, it still will be considered an an index from the end + * the index is negative, it still will be considered an index from the end * of the array. Of a part of the path is not present and this part is more * than just one last element, this flag will instruct to create the whole * chain of corresponding objects and insert the value. |