1
0
mirror of synced 2025-12-25 02:09:19 -05:00

🐛 Destination Postgres: fix \u0000(NULL) value processing (#5336)

* fix \u0000(NULL) value processing for Postgres + move postgres impl of SqlOperations to PostgresSqlOperations.

* changelog + format

* incr release version

* Add generic solution to adopt messages for a destination + remove unnecessary serialization

* revert version for build

* minor review fixes

* format

* add comments

* format

* incr version
This commit is contained in:
Andrii Leonets
2021-08-30 21:41:02 +03:00
committed by GitHub
parent 8c1ff009f9
commit b18bd439d0
24 changed files with 398 additions and 98 deletions

View File

@@ -74,3 +74,7 @@ From [Postgres SQL Identifiers syntax](https://www.postgresql.org/docs/9.0/sql-s
Therefore, Airbyte Postgres destination will create tables and schemas using the Unquoted identifiers when possible or fallback to Quoted Identifiers if the names are containing special characters.
## Changelog
| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.3.10 | 2021-08-11 | [#5336](https://github.com/airbytehq/airbyte/pull/5336) | 🐛 Destination Postgres: fix \u0000(NULL) value processing |