我的 PostgreSQL 实例中有两个数据库,我希望将它们连接到 Trino。我已将它们的配置添加到目录文件夹中的 postgres.properties 文件中:
connection-url=jdbc:postgresql://localhost:5432/postgres
connection-user=postgres
connection-password=postgres
case-insensitive-name-matching= true
connector.name=postgresql
connection-url=jdbc:postgresql://localhost:5432/report
connection-user=postgres
connection-password=postgres
case-insensitive-name-matching= true
但我只能在 Trino 中看到其中的一个。
您需要为每个数据库创建一个属性文件,最佳实践是将文件名定义为与数据库相同的名称,如下所示。
文件:postgres.properties
connection-url=jdbc:postgresql://localhost:5432/postgres
connection-user=postgres
connection-password=postgres
case-insensitive-name-matching= true
文件:report.properties
connector.name=postgresql
connection-url=jdbc:postgresql://localhost:5432/report
connection-user=postgres
connection-password=postgres
case-insensitive-name-matching= true