Achilleas Mantzios
Achilleas Mantzios
**Describe the issue** The docs here : https://jdbc.postgresql.org/documentation/server-prepare/#server-prepared-statements say that a hidden unexamined "set search_path" will go unnoticed by the jdbc hence resulting in a wrong plan. However here :...
postgres@smadevnu:~/src/pljava % git diff diff --git a/pljava-so/src/main/c/VarlenaWrapper.c b/pljava-so/src/main/c/VarlenaWrapper.c index cb1d9e7a..d36c4da4 100644 --- a/pljava-so/src/main/c/VarlenaWrapper.c +++ b/pljava-so/src/main/c/VarlenaWrapper.c @@ -36,6 +36,10 @@ #define GetOldestSnapshot() NULL #endif +#if PG_VERSION_NUM >= 180000 +#define GetOldestSnapshot() NULL...
Hi, 18beta1 is out, any plans to support it ?
Dear members, Today I realized that I have connections coming from pgbouncer that do not execute any statement. Let me state the versions here : * PostgreSQL 16.4 on x86_64-pc-linux-gnu,...