How to get query ID using jdbc #24643
-
Where is the query id stored in the JDBC connection? |
Beta Was this translation helpful? Give feedback.
Answered by
ebyhr
Jan 9, 2025
Replies: 1 comment
-
You can get it via TrinoResultSet likes |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hashhar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can get it via TrinoResultSet likes
resultSet.unwrap(TrinoResultSet.class).getQueryId()
.