All users that connect to Trino with the JDBC driver must be granted access to query tables, how can I do that? #19108
-
I have questions about the requirement "All users that connect to Trino with the JDBC driver must be granted access to query tables in the system.jdbc schema" in the jdbc doc of Trino. How to allow a user to connect to Trino via the JDBC driver?
It's maybe too trivial... But I don't find a simple example/tutorial. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
By default you don't need to do anything since every user has access to all tables. That documentation calls it out because a lot of times people enable some form of access control and disable access to the So unless you've installed some access control you don't need to do anything. |
Beta Was this translation helpful? Give feedback.
By default you don't need to do anything since every user has access to all tables.
That documentation calls it out because a lot of times people enable some form of access control and disable access to the
system
catalog entirely which breaks tools which provide a schema explorer since it needs to access tables undersystem.jdbc
schema.So unless you've installed some access control you don't need to do anything.