We are currently using PostgreSQL 16.5 with the ODBC driver (psqlodbcw.so version 17.00.0006) in an environment that relies on Amazon RDS Proxy.
We have observed that the driver automatically issues the following SQL statements at connection startup:
SET DateStyle = 'ISO';
SET extra_float_digits = 2;
SHOW transaction_isolation;
While harmless in most cases, these queries cause AWS RDS Proxy to pin sessions, which reduces pooling efficiency.
Could you please confirm whether this behavior can be modified or controlled through configuration?