diff options
| author | Tom Lane | 2022-05-12 19:17:30 +0000 |
|---|---|---|
| committer | Tom Lane | 2022-05-12 19:17:30 +0000 |
| commit | 23e7b38bfe396f919fdb66057174d29e17086418 (patch) | |
| tree | 335c3962ef8afe0f6193d0413dbc51642276b147 /src/test/regress | |
| parent | 93909599cdba64c8759d646983c0a4ef93de1e50 (diff) | |
Pre-beta mechanical code beautification.
Run pgindent, pgperltidy, and reformat-dat-files.
I manually fixed a couple of comments that pgindent uglified.
Diffstat (limited to 'src/test/regress')
| -rw-r--r-- | src/test/regress/regress.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |
