query() function not working for PostgreSQL connector #19615
Replies: 2 comments 11 replies
-
Can you include the full stack trace? Also, can you try running the query without the semicolon ( |
Beta Was this translation helpful? Give feedback.
-
I'm seeing the same issue (trino 385 and 433). My query: select * account_id is bigint Stack trace (trino 385) is: com.google.common.util.concurrent.UncheckedExecutionException: com.google.common.util.concurrent.UncheckedExecutionException: com.google.common.base.VerifyException: Case sensitivity not supported |
Beta Was this translation helpful? Give feedback.
-
I have Trino connected to a PostgreSQL database. Since converting my queries into a syntax accepted by PrestoSQL is too much work, I decided to try out querying the underlying database directly following the official Trino's documentation. However, when I try to run this:
I get this error:
trino error: com.google.common.util.concurrent.UncheckedExecutionException: com.google.common.base.VerifyException: Case sensitivity not supported
I tried to add the
case-insensitive-name-matching=true
option to the catalog config file, but no luck. Can anyone explain why this error occurs and how to circumvent it?Beta Was this translation helpful? Give feedback.
All reactions