From 23e7b38bfe396f919fdb66057174d29e17086418 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 12 May 2022 15:17:30 -0400 Subject: Pre-beta mechanical code beautification. Run pgindent, pgperltidy, and reformat-dat-files. I manually fixed a couple of comments that pgindent uglified. --- src/test/regress/regress.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/test/regress') diff --git a/src/test/regress/regress.c b/src/test/regress/regress.c index ade4b51fb8d..ba3532a51e8 100644 --- a/src/test/regress/regress.c +++ b/src/test/regress/regress.c @@ -1226,8 +1226,8 @@ PG_FUNCTION_INFO_V1(get_columns_length); Datum get_columns_length(PG_FUNCTION_ARGS) { - ArrayType *ta = PG_GETARG_ARRAYTYPE_P(0); - Oid *type_oids; + ArrayType *ta = PG_GETARG_ARRAYTYPE_P(0); + Oid *type_oids; int ntypes; int column_offset = 0; @@ -1241,7 +1241,7 @@ get_columns_length(PG_FUNCTION_ARGS) ntypes = ArrayGetNItems(ARR_NDIM(ta), ARR_DIMS(ta)); for (int i = 0; i < ntypes; i++) { - Oid typeoid = type_oids[i]; + Oid typeoid = type_oids[i]; int16 typlen; bool typbyval; char typalign; -- cgit v1.2.3