summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rowley2025-04-30 07:18:30 +0000
committerDavid Rowley2025-04-30 07:18:30 +0000
commit918e7287ed20eb1fe280ab6c4056ccf94dcd53a8 (patch)
tree877289184936c58bc7a4daa347420433cd7e73cd
parentd8555e522eca00f1b4b6cd0b75269b7176fb7931 (diff)
Fix broken indentation
I forgot to run pgindent in d8555e522. Reported-by: Fujii Masao <[email protected]> Discussion: https://postgr.es/m/[email protected]
-rw-r--r--src/backend/utils/adt/jsonfuncs.c6
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;