We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64fc17c commit 52f2c22Copy full SHA for 52f2c22
hive/src/HiveConnector.kt
@@ -33,8 +33,8 @@ class HiveConnector : JDBCConnector() {
33
override val transactionIsolationLevel = Connection.TRANSACTION_READ_UNCOMMITTED
34
35
override fun buildConnectionStr(profile: Profile): String {
36
- val endpoint = profile.configs["endpoint"]
37
- val port = profile.configs["port"]
+ val endpoint = profile.configs["Endpoint"]
+ val port = profile.configs["Port"]
38
return "jdbc:hive2://${endpoint}:${port}"
39
}
40
0 commit comments