Sehrope Sarkuni

Results 113 comments of Sehrope Sarkuni

I think you left out the SQL part of that comment :D The more we think about these metadata functions, the more weird and annoying edge cases we're going to...

The git blame churn for this would be pretty annoying.

Is this something that can be done by proxying the driver's JDBC interface itself? Of the example usage you specified, most of them seem possible atop the driver's standard JDBC...

@periclesroalves Just a guess but maybe they're running something in between your client and the actual database on Azure that's pretending to be a full connection but in reality is...

We used to have that in Omni CI: https://github.com/pgjdbc/pgjdbc/actions/runs/4655033722/job/12626618708 It was setup to run daily at 6am so that we have a rough history of things like "*When did HEAD...

You need to use the `pst.executeUpdate()` (no parameters) version of that method: ```java PreparedStatement pst = null; String sql = ("UPDATE lfvadd SET recipe_name = ? WHERE recipe_id = ?");...

I have an idea to automate this and have the versions driven off of the server versions. Step one of that plan was to add a `/versions.json` to the main...

Having it change based on switching to binary is weird and unexpected. It should be consistent and the shorter 16-byte array is the expected result. I can't imagine anybody would...

> Imagine they had prepareThreshold=0. Then they would get consistent "bytes of the text representation". We must use a feature flag to make the change. I really don't think such...

Unless you're explicitly using the native bindings, you wouldn't be using libpq with this module. The default is to use the pure-JS driver which does not call out to libpq....