diff options
author | David Rowley <drowley@postgresql.org> | 2025-04-30 19:18:30 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2025-04-30 19:18:30 +1200 |
commit | 918e7287ed20eb1fe280ab6c4056ccf94dcd53a8 (patch) | |
tree | 877289184936c58bc7a4daa347420433cd7e73cd | |
parent | d8555e522eca00f1b4b6cd0b75269b7176fb7931 (diff) | |
download | postgresql-918e7287ed20eb1fe280ab6c4056ccf94dcd53a8.tar.gz postgresql-918e7287ed20eb1fe280ab6c4056ccf94dcd53a8.zip |
Fix broken indentation
I forgot to run pgindent in d8555e522.
Reported-by: Fujii Masao <masao.fujii@oss.nttdata.com>
Discussion: https://postgr.es/m/156083c9-eac0-418d-9667-92dec4d6d6cd@oss.nttdata.com
-rw-r--r-- | src/backend/utils/adt/jsonfuncs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/adt/jsonfuncs.c b/src/backend/utils/adt/jsonfuncs.c index eab102a2474..bcb1720b6cd 100644 --- a/src/backend/utils/adt/jsonfuncs.c +++ b/src/backend/utils/adt/jsonfuncs.c @@ -1723,9 +1723,9 @@ push_path(JsonbParseState **st, int level, Datum *path_elems, { /* * tpath contains expected type of an empty jsonb created at each level - * higher or equal to the current one, either jbvObject or jbvArray. - * Since it contains only information about path slice from level to the - * end, the access index must be normalized by level. + * higher or equal to the current one, either jbvObject or jbvArray. Since + * it contains only information about path slice from level to the end, + * the access index must be normalized by level. */ enum jbvType *tpath = palloc0((path_len - level) * sizeof(enum jbvType)); JsonbValue newkey; |