1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-31 03:21:24 +03:00

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
This commit is contained in:
David Rowley 2025-04-30 19:18:30 +12:00
parent d8555e522e
commit 918e7287ed

View 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;