>在 Presto JDBC 连接 URL 中传递参数和值。例如,我想传递一个值为"1234567890"的自定义参数"abc"。 下面的 jdbc 连接 url 是否适用于上述要求?jdbc:presto://example.net:8080/hive/sales?abc="1234567890">
Presto JDBC 不支持 JDBC 连接 URL 中的任意参数。
可用参数记录在此处: https://trino.io/docs/current/installation/jdbc.html#parameter-reference
如果要传递要由 Presto 连接器使用的某种令牌,可以使用extraCredentials
参数。