]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Simplify some stats restore code with InputFunctionCallSafe()
authorMichael Paquier <michael@paquier.xyz>
Mon, 29 Jun 2026 23:30:52 +0000 (08:30 +0900)
committerMichael Paquier <michael@paquier.xyz>
Mon, 29 Jun 2026 23:30:52 +0000 (08:30 +0900)
commitac536a4061bcf22db46ba23d077cd36e65e14e1a
treebd94f0f1cf8924bc00e789d645d710c80f458406
parent1a7fa06dbcd186f4e13332157f3ffb6da955fe1a
Simplify some stats restore code with InputFunctionCallSafe()

statatt_build_stavalues() and array_in_safe() have been relying on
InitFunctionCallInfoData() with a locally-filled state to call a data
type input function.  InputFunctionCallSafe() can be used to achieve the
same job, simplifying some code.

This fixes an over-allocation of FunctionCallInfoBaseData done in
statatt_build_stavalues(), where there was space for 8 elements but only
3 were needed.  The over-allocation exists since REL_18_STABLE, and was
harmless in practice.

While on it, fix some comments for both routines, where elemtypid was
mentioned.

Backpatch down to v19.  This code has been reworked during the last
development cycle while working on the restore of extended statistics,
so this keeps the code consistent across all branches.

Author: Jian He <jian.universality@gmail.com>
Author: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/CACJufxEGah9PaiTQ=cG14GMMBsUQ3ohGct9tdSwbMQPQ0-nbbQ@mail.gmail.com
Backpatch-through: 19
src/backend/statistics/extended_stats_funcs.c
src/backend/statistics/stat_utils.c