Re: vacuum_truncate configuration parameter and isset_offset

From: Nathan Bossart <nathandbossart(at)gmail(dot)com>
To: Nikolay Shaplov <dhyan(at)nataraj(dot)su>
Cc: pgsql-hackers(at)lists(dot)postgresql(dot)org, Robert Treat <rob(at)xzilla(dot)net>, Fujii Masao <masao(dot)fujii(at)oss(dot)nttdata(dot)com>, Albe <laurenz(dot)albe(at)cybertec(dot)at>, Gurjeet Singh <gurjeet(at)singh(dot)im>, Will Storey <will(at)summercat(dot)com>, Álvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Subject: Re: vacuum_truncate configuration parameter and isset_offset
Date: 2025-03-24 14:43:38
Message-ID: Z-Fvmnf57z6zM8Ky@nathan
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Mon, Mar 24, 2025 at 03:27:35PM +0300, Nikolay Shaplov wrote:
> I would suggest to use enum here to achieve same goal, or add some "trilean"
> data type that can be "true/false/unset"

I did first try making the vacuum_truncate reloption an enum, but I didn't
proceed with that approach for a couple of reasons:

* vacuum_truncate is already a Boolean reloption, so switching it to an
enum would require enumerating all possible values accepted by
parse_bool(), which has the following comment:

/*
* Try to interpret value as boolean value. Valid values are: true,
* false, yes, no, on, off, 1, 0; as well as unique prefixes thereof.
* If the string parses okay, return true, else false.
* If okay and result is not NULL, return the value in *result.
*/

I also considered adding some sort of pluggable parsing functionality or
something like StdRdOptIndexCleanupValues (i.e., a subset of the most
popular values accepted by parse_bool()), but those seemed a little too
complicated for the problem at hand.

* I wasn't sure whether it would be better to expose this third "unset"
value or to make it hidden and for internal use only. The former would
mean we have two ways to declare a reloption "unset." You could either
not set it, or you could explicitly set it to "unset." The latter would
require additional code somewhere, or we could just leave it
undocumented. Both of these approaches seemed like weird user
experiences to me.

Overall, the biggest reason I didn't proceed with the enum is because it
felt like it was making it the user's problem. Rather than just teaching
our code how to determine if a reloption was explicitly set, we'd be
introducing unnecessary complexity to the user, or at least we'd be trying
to closely match the existing functionality in an attempt to hide this
complexity from them.

--
nathan

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2025-03-24 14:48:25 Re: vacuum_truncate configuration parameter and isset_offset
Previous Message Robert Haas 2025-03-24 14:31:27 Re: Add Postgres module info