From 016c05e454871da6150d781ad4a355bf1b32a910 Mon Sep 17 00:00:00 2001 From: Joe Lodin Date: Tue, 26 Oct 2021 18:02:12 -0400 Subject: [PATCH] Add schema access requirement to JDBC driver doc --- docs/src/main/sphinx/installation/jdbc.rst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/src/main/sphinx/installation/jdbc.rst b/docs/src/main/sphinx/installation/jdbc.rst index 1abf90a8b0fb..8b18ce72c881 100644 --- a/docs/src/main/sphinx/installation/jdbc.rst +++ b/docs/src/main/sphinx/installation/jdbc.rst @@ -10,8 +10,11 @@ as those used for reporting and database development, use the JDBC driver. Requirements ------------ -The JDBC driver is compatible with Java versions 8 or higher, and can be used with -applications running on Java virtual machines version 8 or higher. +The Trino JDBC driver has the following requirements: + +* Java version 8 or higher. +* All users that connect to Trino with the JDBC driver must be granted access to + query tables in the ``system.jdbc`` schema. Installing ----------