Skip to content

Commit 918e728

Browse files
committed
Fix broken indentation
I forgot to run pgindent in d8555e5. Reported-by: Fujii Masao <masao.fujii@oss.nttdata.com> Discussion: https://postgr.es/m/156083c9-eac0-418d-9667-92dec4d6d6cd@oss.nttdata.com
1 parent d8555e5 commit 918e728

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/utils/adt/jsonfuncs.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1723,9 +1723,9 @@ push_path(JsonbParseState **st, int level, Datum *path_elems,
17231723
{
17241724
/*
17251725
* tpath contains expected type of an empty jsonb created at each level
1726-
* higher or equal to the current one, either jbvObject or jbvArray.
1727-
* Since it contains only information about path slice from level to the
1728-
* end, the access index must be normalized by level.
1726+
* higher or equal to the current one, either jbvObject or jbvArray. Since
1727+
* it contains only information about path slice from level to the end,
1728+
* the access index must be normalized by level.
17291729
*/
17301730
enum jbvType *tpath = palloc0((path_len - level) * sizeof(enum jbvType));
17311731
JsonbValue newkey;

0 commit comments

Comments
 (0)