Re: pg_settings.unit and DefineCustomXXXVariable

2025-01-09 Thread Luca Ferrari
On Wed, Jan 8, 2025 at 4:18 PM Tom Lane wrote: > > Matthias van de Meent writes: > > DefineCustomXXXVariable has a 'flags' argument, into which GUC_UNIT_* > > can be or-ed. Thanks Matthias and Tom for the explaination. Since I'm needing to define "seconds", GUC_UNIT_S is what I was looking for.

Re: pg_settings.unit and DefineCustomXXXVariable

2025-01-08 Thread Tom Lane
Matthias van de Meent writes: > On Wed, 8 Jan 2025 at 11:13, Luca Ferrari wrote: >> I need to define a few GUCs, and for that purpose I'm using >> DefineCustomXXXVariable functions that provide hooks for assignment, >> show and check. However it is not clear to me if it is possible to >> populate

Re: pg_settings.unit and DefineCustomXXXVariable

2025-01-08 Thread Matthias van de Meent
On Wed, 8 Jan 2025 at 11:13, Luca Ferrari wrote: > > Hi all, > I need to define a few GUCs, and for that purpose I'm using > DefineCustomXXXVariable functions that provide hooks for assignment, > show and check. However it is not clear to me if it is possible to > populate the unit column in pg_se

pg_settings.unit and DefineCustomXXXVariable

2025-01-08 Thread Luca Ferrari
Hi all, I need to define a few GUCs, and for that purpose I'm using DefineCustomXXXVariable functions that provide hooks for assignment, show and check. However it is not clear to me if it is possible to populate the unit column in pg_settings for the custom defined variables, and if so, how. Any s