REPLICA IDENTITY
of the table to FULL
. This tells PostgreSQL to include the full old row in the WAL for UPDATE and DELETE operations, ensuring that all column values (including TOAST columns) are available for replication.
You can set the REPLICA IDENTITY
to FULL
using the following SQL command:
REPLICA IDENTITY FULL
.
REPLICA IDENTITY FULL
is not set for a table with TOAST columns, you may encounter the following issues when replicating to ClickHouse:
REPLICA IDENTITY FULL
for tables with TOAST columns to ensure accurate and complete data replication.
REPLICA IDENTITY
, you can ensure that your data is replicated accurately and completely.