On 06.08.24 17:13, Heikki Linnakangas wrote:
> --- a/src/backend/access/transam/xlogprefetcher.c
> +++ b/src/backend/access/transam/xlogprefetcher.c
> @@ -362,7 +362,7 @@ XLogPrefetcher *
>  XLogPrefetcherAllocate(XLogReaderState *reader)
>  {
>         XLogPrefetcher *prefetcher;
> -       static HASHCTL hash_table_ctl = {
> +       const HASHCTL hash_table_ctl = {

Is there a reason this is not changed to

static const HASHCTL ...

?  Most other places where changed in that way.



Reply via email to