Re: Add a GUC check hook to ensure summarize_wal cannot be enabled when wal_level is minimal

From: Jelte Fennema-Nio <postgres(at)jeltef(dot)nl>
To: Nathan Bossart <nathandbossart(at)gmail(dot)com>
Cc: Fujii Masao <masao(dot)fujii(at)oss(dot)nttdata(dot)com>, pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: Add a GUC check hook to ensure summarize_wal cannot be enabled when wal_level is minimal
Date: 2024-07-03 14:46:21
Message-ID: CAGECzQSovcwdjCi=hnUFw2rq93LVpOYU3gc3iURdZ_MAoJoF6w@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Ugh copy paste mistake, this is what I meant

On Wed, 3 Jul 2024 at 16:45, Jelte Fennema-Nio <postgres(at)jeltef(dot)nl> wrote:
> This hits the already existing check:
> summarize_wal = 'true'
> wal_level = 'minimal'
>
> This hits the new check:
> summarize_wal = 'true'
> wal_level = 'minimal'
>
> And actually this would throw an error from the new check even though
> the config is fine:
>
> wal_level = 'minimal'
> summarize_wal = 'true'
> wal_level = 'logical'

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Marat Bukharov 2024-07-03 14:54:24 Re: [PATCH] Add min/max aggregate functions to BYTEA
Previous Message Jelte Fennema-Nio 2024-07-03 14:45:10 Re: Add a GUC check hook to ensure summarize_wal cannot be enabled when wal_level is minimal