Fix broken indentation
authorDavid Rowley <[email protected]>
Wed, 30 Apr 2025 07:18:30 +0000 (19:18 +1200)
committerDavid Rowley <[email protected]>
Wed, 30 Apr 2025 07:18:30 +0000 (19:18 +1200)
I forgot to run pgindent in d8555e522.

Reported-by: Fujii Masao <[email protected]>
Discussion: https://postgr.es/m/156083c9-eac0-418d-9667-92dec4d6d6cd@oss.nttdata.com

src/backend/utils/adt/jsonfuncs.c

index eab102a2474034b395063f66ebe360c6ae0d65ee..bcb1720b6cde27cea71b68130195f9415c5f9e1d 100644 (file)
@@ -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;