Sehrope Sarkuni

Results 113 comments of Sehrope Sarkuni

@demonti That's very interesting. I'm not sure about merging in JDK-specific behavior in the core driver, but luckily in this case you can handle it in the connection options without...

> This is actually one of the topics I want to bring up in Vancouver at the postgresql dev conference is to find a way to put topology data in...

FYI, the README for the `postres` "official" image only lists v12+ but the older containers still exist: https://hub.docker.com/_/postgres ``` $ docker pull postgres:8.4 8.4: Pulling from library/postgres Image docker.io/library/postgres:8.4 uses...

The SQL Server driver does something similar to this to open sockets in parallel to all resolving IPs for the database host: https://github.com/microsoft/mssql-jdbc/blob/c073e78cd18153b305c29533fe53b02200edf796/src/main/java/com/microsoft/sqlserver/jdbc/IOBuffer.java#L2470-L2602 For the record, I think it's needlessly...

+1 to adding something like this and the unintended multi-command execution prevention is a perfect example of why. The PGJDBC driver has something similar but rather than a boolean, it...

Is there any reason we wouldn't want the total to be the sum of the counts from the individual statements that we're executing? The current `-2` is not wrong in...

Ah yes I'm mixing up the total count for a statement vs the array response. Yes that's tricky as it'd involve ascribing counts to a slice that we combined into...

It works when the certificate is expired because the default TrustManager used to validate the certificate does not check the certificate expiration. It only checks if server's certificate matches or...

@vitaly-t It's in the docs: https://node-postgres.com/api/pool#releaseCallback The API has been like that for as long as I can remember.

The pool is not aware of the connection status. It's up to the user to inform the pool that the connection is either still valid (via `client.release()`) or invalid (via...