Harmonize parameter names in storage and AM code.
authorPeter Geoghegan <[email protected]>
Tue, 20 Sep 2022 02:18:36 +0000 (19:18 -0700)
committerPeter Geoghegan <[email protected]>
Tue, 20 Sep 2022 02:18:36 +0000 (19:18 -0700)
commitbfcf1b34805f70df48eedeec237230d0cc1154a6
treebaf824c317ecf02c49d758e75e72d69c5b6a4ec6
parentc47885bd8b6997ccb0cc1997f61f6f98a79ce32a
Harmonize parameter names in storage and AM code.

Make sure that function declarations use names that exactly match the
corresponding names from function definitions in storage, catalog,
access method, executor, and logical replication code, as well as in
miscellaneous utility/library code.

Like other recent commits that cleaned up function parameter names, this
commit was written with help from clang-tidy.  Later commits will do the
same for other parts of the codebase.

Author: Peter Geoghegan <[email protected]>
Reviewed-By: David Rowley <[email protected]>
Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com
80 files changed:
src/backend/access/brin/brin_minmax_multi.c
src/backend/access/common/reloptions.c
src/backend/access/gin/ginpostinglist.c
src/backend/access/gist/gistbuild.c
src/backend/access/gist/gistbuildbuffers.c
src/backend/access/gist/gistvacuum.c
src/backend/access/transam/generic_xlog.c
src/backend/access/transam/xact.c
src/backend/access/transam/xlog.c
src/backend/access/transam/xloginsert.c
src/backend/access/transam/xlogreader.c
src/backend/catalog/aclchk.c
src/backend/catalog/namespace.c
src/backend/commands/dbcommands.c
src/backend/executor/execIndexing.c
src/backend/executor/execParallel.c
src/backend/executor/nodeAgg.c
src/backend/executor/nodeHash.c
src/backend/executor/nodeHashjoin.c
src/backend/executor/nodeMemoize.c
src/backend/lib/bloomfilter.c
src/backend/replication/logical/decode.c
src/backend/replication/logical/worker.c
src/backend/replication/pgoutput/pgoutput.c
src/backend/replication/slot.c
src/backend/storage/buffer/bufmgr.c
src/backend/storage/file/buffile.c
src/backend/storage/freespace/freespace.c
src/backend/storage/ipc/dsm.c
src/backend/storage/ipc/procarray.c
src/backend/storage/lmgr/lwlock.c
src/backend/storage/lmgr/predicate.c
src/backend/storage/smgr/md.c
src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c
src/backend/utils/mb/conversion_procs/euc_tw_and_big5/euc_tw_and_big5.c
src/include/access/genam.h
src/include/access/generic_xlog.h
src/include/access/gin_private.h
src/include/access/gist_private.h
src/include/access/reloptions.h
src/include/access/tupconvert.h
src/include/access/tupdesc.h
src/include/access/twophase.h
src/include/access/xact.h
src/include/access/xlog.h
src/include/access/xloginsert.h
src/include/access/xlogreader.h
src/include/access/xlogrecovery.h
src/include/access/xlogutils.h
src/include/catalog/dependency.h
src/include/catalog/index.h
src/include/catalog/namespace.h
src/include/catalog/objectaccess.h
src/include/catalog/objectaddress.h
src/include/catalog/pg_conversion.h
src/include/catalog/pg_inherits.h
src/include/catalog/pg_publication.h
src/include/commands/copy.h
src/include/commands/dbcommands_xlog.h
src/include/executor/execParallel.h
src/include/executor/executor.h
src/include/executor/nodeIncrementalSort.h
src/include/executor/spi.h
src/include/mb/pg_wchar.h
src/include/miscadmin.h
src/include/replication/logical.h
src/include/replication/logicalproto.h
src/include/replication/origin.h
src/include/replication/slot.h
src/include/replication/walsender.h
src/include/storage/barrier.h
src/include/storage/bufpage.h
src/include/storage/dsm.h
src/include/storage/fd.h
src/include/storage/fsm_internals.h
src/include/storage/indexfsm.h
src/include/storage/lwlock.h
src/include/storage/predicate.h
src/include/storage/procarray.h
src/include/storage/standby.h