Re: Request for comment on setting binary format output per session
Jeff Davis <pgsql@j-davis.com>
From: Jeff Davis <pgsql@j-davis.com>
To: Dave Cramer <davecramer@gmail.com>
Cc: Tom Lane <tgl@sss.pgh.pa.us>, Peter Eisentraut <peter.eisentraut@enterprisedb.com>, PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2023-03-25T23:06:21Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Silence compiler warning introduced in 1edb3b491b
- fba2112b1569 17.0 cited
On Thu, 2023-03-23 at 15:37 -0400, Dave Cramer wrote: > So where do we go from here ? > > I can implement using type names as well as OID's My current thought is that you should use the protocol extension and make type names work (in addition to OIDs) at least for fully-qualified type names. I don't really like the GUC -- perhaps I could be convinced it's OK, but until we find a problem with protocol extensions, it looks like a protocol extension is the way to go here. I like Peter's idea for some kind of global identifier, but we can do that independently at a later time. If search path works fine and we're all happy with it, we could also support unqualified type names. It feels slightly off to me to use search_path for something like that, though. There's still the problem about the connection pools. pgbouncer could consider the binary formats to be an important parameter like the database name, where the connection pooler would not mingle connections with different settings for binary_formats. That would work, but it would be weird because if a new version of a driver adds new binary format support, it could cause worse connection pooling performance until all the other drivers also support that binary format. I'm not sure if that's a major problem or not. Another idea would be for the connection pooler to also have a binary_formats config, and it would do some checking to make sure all connecting clients understand some minimal set of binary formats, so that it could still mingle the connections. Either way, I think this is solvable by the connection pooler. Regards, Jeff Davis