You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/source-postgres/src/main/kotlin/io/airbyte/integrations/source/postgres/config/PostgresSourceConfiguration.kt
+1-3Lines changed: 1 addition & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,6 @@ import java.net.URLDecoder
24
24
importjava.net.URLEncoder
25
25
importjava.nio.charset.StandardCharsets
26
26
importjava.time.Duration
27
-
importorg.postgresql.PGProperty
28
27
29
28
privateval log =KotlinLogging.logger {}
30
29
@@ -156,8 +155,7 @@ constructor(
156
155
var encodedDatabaseName =URLEncoder.encode(pojo.database, StandardCharsets.UTF_8.name())
157
156
158
157
// Build JDBC URL.
159
-
// TODO: handle schemas correctly
160
-
val jdbcUrlFmt ="jdbc:postgresql://%s:%d/$encodedDatabaseName?${PGProperty.CURRENT_SCHEMA}=public"
158
+
val jdbcUrlFmt ="jdbc:postgresql://%s:%d/$encodedDatabaseName"
0 commit comments