Handle Postgres TOAST values and missing columns/values from wal2json #146
Description
Describe the bug
We ran into the problem that particular columns ended up NULL
in the data warehouse after logical replication updates. After diving into the problem we discovered that this happens because of TOAST values in Postgres. A good explanation can be found here https://debezium.io/blog/2019/10/08/handling-unchanged-postgres-toast-values/, but TL;DR Postgres can sometimes decide to not include a column in the logical replication message from wal2json if that particular column was not part of the UPDATE
statement.
To Reproduce
Used the steps described here https://github.com/eulerto/wal2json/pull/99/files#diff-dc97f558087716ec3429b35c430504cbd91e93aa6e477188c289927632d01b6f to reproduce the problem.
Expected behavior
The expectation is that if the message from wal2json contains a toast value and misses a column it does not set that column to NULL
for the downstream singer target.
Your environment
- Version of tap: forked version of 1.8.0 (HackerOne specific changes Hacker0x01/pipelinewise-tap-postgres#1)
- Version of python 3.9.7
Additional context
Because HackerOne is using this tap in production we have already pushed a fix to our fork of tap-postgres in Hacker0x01#1. The commit with the working fix for HackerOne is Hacker0x01@1584b8d. This fix requires altering tables with REPLICA IDENTITY FULL
.