PostgreSQL connection in Apache-Drill
I am trying to get Apache Drill to connect to a PostgreSQL database using the following configuration # storage-plugins-override.conf "postgresql": { "type": "jdbc", "driver": "org.postgresql.Driver", "url": "${POSTGRES_URL}", "username": "${POSTGRES_USER}", "password": "${POSTGRES_PASSWORD}", "enabled": true, "sourceParameters": { "minimumIdle": 0, "autoCommit": true, "connectionTestQuery":…