Pre-beta mechanical code beautification.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: da256a4a7fdcca35fe7ca808686ad3de6ee22306
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2024-05-14T20:34:50Z
Releases: 17.0
Pre-beta mechanical code beautification.

Run pgindent, pgperltidy, and reformat-dat-files.

The pgindent part of this is pretty small, consisting mainly of
fixing up self-inflicted formatting damage from patches that
hadn't bothered to add their new typedefs to typedefs.list.
In order to keep it from making anything worse, I manually added
a dozen or so typedefs that appeared in the existing typedefs.list
but not in the buildfarm's list.  Perhaps we should formalize that,
or better find a way to get those typedefs into the automatic list.

pgperltidy is as opinionated as always, and reformat-dat-files too.

Files

PathChange+/−
contrib/sepgsql/hooks.c modified +1 −1
contrib/sepgsql/label.c modified +1 −1
contrib/sepgsql/uavc.c modified +1 −1
src/backend/catalog/Catalog.pm modified +55 −55
src/bin/pg_amcheck/t/002_nonesuch.pl modified +2 −5
src/bin/pg_basebackup/t/010_pg_basebackup.pl modified +10 −7
src/bin/pg_basebackup/t/040_pg_createsubscriber.pl modified +55 −51
src/bin/pgbench/t/001_pgbench_with_server.pl modified +2 −7
src/bin/pg_checksums/t/002_actions.pl modified +1 −1
src/bin/pg_combinebackup/t/002_compare_backups.pl modified +43 −26
src/bin/pg_combinebackup/t/003_timeline.pl modified +10 −6
src/bin/pg_combinebackup/t/004_manifest.pl modified +13 −13
src/bin/pg_combinebackup/t/005_integrity.pl modified +33 −12
src/bin/pg_combinebackup/t/006_db_file_copy.pl modified +13 −7
src/bin/pg_dump/t/002_pg_dump.pl modified +5 −9
src/bin/pg_rewind/t/003_extrafiles.pl modified +2 −2
src/bin/pg_upgrade/check.c modified +112 −112
src/bin/pg_upgrade/t/003_logical_slots.pl modified +3 −2
src/bin/pg_upgrade/t/004_subscription.pl modified +1 −2
src/bin/pg_verifybackup/t/003_corruption.pl modified +5 −3
src/bin/pg_verifybackup/t/005_bad_manifest.pl modified +2 −1
src/bin/pg_waldump/t/001_basic.pl modified +117 −34
src/bin/pg_walsummary/t/002_blocks.pl modified +5 −5
src/bin/psql/t/001_basic.pl modified +10 −6
src/bin/scripts/t/011_clusterdb_all.pl modified +5 −4
src/bin/scripts/t/050_dropdb.pl modified +1 −1
src/bin/scripts/t/091_reindexdb_all.pl modified +5 −4
src/bin/scripts/t/100_vacuumdb.pl modified +4 −1
src/bin/scripts/t/101_vacuumdb_all.pl modified +5 −4
src/common/jsonapi.c modified +21 −21
src/common/unicode_case.c modified +5 −5
src/common/unicode_category.c modified +2 −2
src/include/catalog/pg_aggregate.dat modified +8 −6
src/include/catalog/pg_collation.dat modified +2 −1
src/include/catalog/pg_database.dat modified +3 −3
src/include/catalog/pg_proc.dat modified +38 −43
src/include/catalog/pg_type.dat modified +5 −4
src/include/common/unicode_case_table.h modified +2 −2
src/include/common/unicode_category_table.h modified +3 −3
src/interfaces/libpq/t/005_negotiate_encryption.pl modified +123 −57
src/port/pg_popcount_avx512.c modified +1 −1
src/test/modules/test_pg_dump/t/001_base.pl modified +8 −4
src/test/modules/test_radixtree/test_radixtree.c modified +4 −4
src/test/perl/PostgreSQL/Test/Cluster.pm modified +27 −23
src/test/perl/PostgreSQL/Test/Kerberos.pm modified +12 −7
src/test/recovery/t/001_stream_rep.pl modified +5 −3
src/test/recovery/t/015_promotion_pages.pl modified +2 −1
src/test/recovery/t/019_replslot_limit.pl modified +2 −2
src/test/recovery/t/035_standby_logical_decoding.pl modified +6 −3
src/test/recovery/t/037_invalid_database.pl modified +7 −3
src/test/recovery/t/040_standby_failover_slots_sync.pl modified +54 −38
src/test/ssl/t/001_ssltests.pl modified +2 −1
src/test/subscription/t/008_diff_schema.pl modified +2 −1
src/test/subscription/t/019_stream_subxact_ddl_abort.pl modified +2 −1
src/test/subscription/t/026_stats.pl modified +1 −2
src/test/subscription/t/029_on_error.pl modified +2 −1
src/test/subscription/t/032_subscribe_use_index.pl modified +2 −1
src/test/subscription/t/033_run_as_table_owner.pl modified +1 −4
src/test/subscription/t/100_bugs.pl modified +7 −8
src/tools/pgindent/typedefs.list modified +90 −53