Anon Z is facing an issue with PostgreSQL CDC not working when a record is updated. Siyuan Wang suggests checking the REPLICA IDENTITY of the PostgreSQL table.
Anon Z
Asked on Jul 27, 2023
-- Check and alter the REPLICA IDENTITY of the table to FULL
ALTER TABLE table_name REPLICA IDENTITY FULL;