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/java/io/airbyte/integrations/source/postgres/PostgresSource.java
+4
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,10 @@ public JsonNode toDatabaseConfigStatic(final JsonNode config) {
79
79
config.get("port").asText(),
80
80
config.get("database").asText()));
81
81
82
+
if (config.get("jdbc_url_params") != null && !config.get("jdbc_url_params").asText().isEmpty()) {
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/source-postgres/src/main/resources/spec.json
+8-2
Original file line number
Diff line number
Diff line change
@@ -54,18 +54,24 @@
54
54
"airbyte_secret": true,
55
55
"order": 5
56
56
},
57
+
"jdbc_url_params": {
58
+
"description": "Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).",
59
+
"title": "JDBC URL Params",
60
+
"type": "string",
61
+
"order": 6
62
+
},
57
63
"ssl": {
58
64
"title": "Connect using SSL",
59
65
"description": "Encrypt client/server communications for increased security.",
60
66
"type": "boolean",
61
67
"default": false,
62
-
"order": 6
68
+
"order": 7
63
69
},
64
70
"replication_method": {
65
71
"type": "object",
66
72
"title": "Replication Method",
67
73
"description": "Replication method to use for extracting data from the database.",
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/source-postgres/src/test/java/io/airbyte/integrations/source/postgres/PostgresSpecTest.java
| 0.4.15 | 2022-05-13 |[12834](https://github.com/airbytehq/airbyte/pull/12834)| Fix the bug that the connector returns empty catalog for Azure Postgres database |
274
275
| 0.4.14 | 2022-05-08 |[12689](https://github.com/airbytehq/airbyte/pull/12689)| Add table retrieval according to role-based `SELECT` privilege |
275
276
| 0.4.13 | 2022-05-05 |[10230](https://github.com/airbytehq/airbyte/pull/10230)| Explicitly set null value for field in json |
0 commit comments