Skip to content

Commit dd31e2f

Browse files
committed
bump version
1 parent 3c1be9b commit dd31e2f

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

airbyte-integrations/connectors/source-postgres/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION source-postgres
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.4.38
19+
LABEL io.airbyte.version=0.4.39
2020
LABEL io.airbyte.name=airbyte/source-postgres

airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/PostgresSourceOperations.java

-11
Original file line numberDiff line numberDiff line change
@@ -280,17 +280,6 @@ protected void putBoolean(final ObjectNode node, final String columnName, final
280280
node.put(columnName, resultSet.getString(index).equalsIgnoreCase("t"));
281281
}
282282

283-
@Override
284-
protected void putFloat8(final ObjectNode node, final String columnName, final ResultSet resultSet, final int index)
285-
throws SQLException {
286-
final BigDecimal bigDecimal = DataTypeUtils.returnNullIfInvalid(() -> resultSet.getBigDecimal(index));
287-
if (bigDecimal != null) {
288-
node.put(columnName, bigDecimal.setScale(resultSet.getMetaData().getScale(index), RoundingMode.HALF_EVEN).doubleValue());
289-
} else {
290-
node.put(columnName, (BigDecimal) null);
291-
}
292-
}
293-
294283
protected <T extends PGobject> void putObject(final ObjectNode node,
295284
final String columnName,
296285
final ResultSet resultSet,

docs/integrations/sources/postgres.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,8 @@ Possible solutions include:
354354

355355
| Version | Date | Pull Request | Subject |
356356
|:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------|
357-
| 0.5.0 | 2022-07-26 | [14362](https://github.com/airbytehq/airbyte/pull/14362) | Integral columns are now discovered as int64 fields. |
357+
| 0.4.39 | 2022-08-03 | [14534](https://github.com/airbytehq/airbyte/pull/14534) | Align regular and CDC integration tests and data mappers |
358+
| 0.4.38 | 2022-07-26 | [14362](https://github.com/airbytehq/airbyte/pull/14362) | Integral columns are now discovered as int64 fields. |
358359
| 0.4.37 | 2022-07-22 | [14714](https://github.com/airbytehq/airbyte/pull/14714) | Clarified error message when invalid cursor column selected |
359360
| 0.4.36 | 2022-07-21 | [14451](https://github.com/airbytehq/airbyte/pull/14451) | Make initial CDC waiting time configurable |
360361
| 0.4.35 | 2022-07-14 | [14574](https://github.com/airbytehq/airbyte/pull/14574) | Removed additionalProperties:false from JDBC source connectors |

0 commit comments

Comments
 (0)