From: David Rowley Date: Wed, 30 Apr 2025 07:18:30 +0000 (+1200) Subject: Fix broken indentation X-Git-Tag: REL_18_BETA1~48 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=918e7287ed20eb1fe280ab6c4056ccf94dcd53a8;p=postgresql.git Fix broken indentation I forgot to run pgindent in d8555e522. Reported-by: Fujii Masao Discussion: https://postgr.es/m/156083c9-eac0-418d-9667-92dec4d6d6cd@oss.nttdata.com --- 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;