Piotr Findeisen

Results 644 comments of Piotr Findeisen

https://github.com/trinodb/trino/actions/runs/19428997335/job/55584035243?pr=27330

https://github.com/trinodb/trino/actions/runs/19433779789/job/55600116349

I hope someone figures out what the problem is. i will ping people involved in - https://github.com/trinodb/trino/pull/16202 in the meantime, a stop gap to prevent all PRs and master commits...

@pj-spoelders thanks for sharing we definitely need to uncomment https://github.com/trinodb/trino/blob/4cb89816e3ef90ab8db5a45055db4505a0525033/.github/workflows/ci.yml#L915 let's keep an eye on https://github.com/trinodb/trino/pull/27379 whether it does that. > Do you need any direct further action or info...

@pj-spoelders is working on this here - https://github.com/trinodb/trino/pull/27479

> add privateKey as a JVM property for Snowflake The private key is handled as a normal connector configuration property, and not via JVM system properties, right? if so, please...

@davecramer let's discuss API first. When _reading_ one could use `rs.getObject(column, LocalDateTime[].class)` to request lossless representation of PG's `timestamp[]`. However, to handle multi-dimensional arrays, this could get cumbersome and `rs.getArray(column)`...

@davecramer AFAIU, PostgreSQL `timestamp [without time zone]` and Java `LocalDateTime` are both unrelated to any time zone (session, client's, server's). Time zones are implicated only because JDBC wants you to...

> you'd probably be surprised to know that timestamp with timezone doesn't store the timezone either then. In PostgreSQL -- yes, I know. Right, I missed the fact the issue...