Re: some unused parameters cleanup
Fujii Masao <masao.fujii@oss.nttdata.com>
From: Fujii Masao <masao.fujii@oss.nttdata.com>
To: Andreas Karlsson <andreas@proxel.se>, Bruce Momjian <bruce@momjian.us>,
Tom Lane <tgl@sss.pgh.pa.us>
Cc: Peter Eisentraut <peter.eisentraut@2ndquadrant.com>,
pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2020-08-26T01:26:23Z
Lists: pgsql-hackers
On 2020/08/26 2:50, Andreas Karlsson wrote: > On 8/25/20 7:42 PM, Bruce Momjian wrote: >> On Tue, Aug 25, 2020 at 12:59:31PM -0400, Tom Lane wrote: >>> Peter Eisentraut <peter.eisentraut@2ndquadrant.com> writes: >>>> Here is a series of patches to remove some unused function parameters. >>>> In each case, the need for them was removed by some other code changes >>>> over time but the unusedness was not noticed. I have included a >>>> reference to when they became unused in each case. >>> >>> For some of these, there's an argument for keeping the unused parameter >>> for consistency with sibling functions that do use it. Not sure how >>> important that is, though. >> >> I think if they are kept for that reason, we should document that so we >> know not to revisit this issue for them.> > +1 > > That way we can avoid new people discovering the same unused parameters and then submitting patches for them. I agree that some parameters were kept for that reason, but ISTM that also some were kept just accidentally. For example, regarding unused parameter "encoding" that 0010 patch tries to remove, commit f0d6f20278 got rid of the use of "encoding" from generate_normalized_query() but ISTM that it just forgot to remove that parameter. Regards, -- Fujii Masao Advanced Computing Technology Center Research and Development Headquarters NTT DATA CORPORATION
Commits
-
Remove unused parameters
- 8354e7b27ebe 14.0 landed
-
Remove unused parameter
- c02767d2415d 14.0 landed
- 1dec091d5b0b 14.0 landed
- 76af9744db16 14.0 landed
- 96cfcadd26e2 14.0 landed
- fd5e3b291415 14.0 landed
-
Keep pg_stat_statements' query texts in a file, not in shared memory.
- f0d6f20278b7 9.4.0 cited