Re: After upgrading libpq, the same function(PQftype) call returns a different OID - Mailing list pgsql-general

From David G. Johnston
Subject Re: After upgrading libpq, the same function(PQftype) call returns a different OID
Date
Msg-id CAKFQuwZOCZB19s_mup7CDqLoTyH3Q5dAf7Qf8uR-pwoN47yKMA@mail.gmail.com
Whole thread Raw
In response to Re: After upgrading libpq, the same function(PQftype) call returns a different OID  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: After upgrading libpq, the same function(PQftype) call returns a different OID
List pgsql-general
On Thu, Mar 20, 2025 at 2:56 PM Tom Lane <tgl@sss.pgh.pa.us> wrote:
"David G. Johnston" <david.g.johnston@gmail.com> writes:
> On Thu, Mar 20, 2025 at 11:54 AM Tom Lane <tgl@sss.pgh.pa.us> wrote:
>> I think it's a mistake to suppose that pg_type_d.h is the only
>> place where there's a risk of confusion.  We should be thinking
>> about this more generally: genbki.pl is taking zero thought to
>> make what it emits readable.  I think it would help to
>> label the sections it emits, perhaps along the lines of
>> /* Auto-generated OID macros */

> I'd consider this enough for the moment, so long as we explicitly address
> the cross-version constancy of the OID values associated with each type.

That's documented elsewhere, I believe.  For the foo_d.h files,
I think it'd be sufficient to do something like 0001 attached.


WFM.  Thanks.

Also, while checking out the results, I noticed that pg_class.h
has an "extern" in the wrong place: it's exposed to client code
which can have no use for it.  That extern doesn't mention any
backend-only typedefs, so it's fairly harmless, but it's still
a clear example of somebody not reading the memo.  Hence 0002.


Maybe tack this onto genbki.h?

diff --git a/src/include/catalog/genbki.h b/src/include/catalog/genbki.h
index 26e205529d..4a1567a46b 100644
--- a/src/include/catalog/genbki.h
+++ b/src/include/catalog/genbki.h
@@ -146,4 +146,6 @@
  */
 #undef EXPOSE_TO_CLIENT_CODE
 
+/* Additional backend-only code is placed after the client-code section. */
+
 #endif                                                 /* GENBKI_H */

David J.

pgsql-general by date:

Previous
From: Cosimo Simeone
Date:
Subject: Re: Need help understanding has_function_privilege
Next
From: Evgeny Morozov
Date:
Subject: Querying one partition in a function takes locks on all partitions