I am using SymmetricDS version 3.4.8 to synchronize 2 PostgreSQL DBs.
I have encountered the following problem: I have several dependent tables, e.g. 'node' and 'device' tables where 'device' table has FK to 'node' table; if new rows were added to these tables during the initial sync when 'node' table was already synchronized but 'device' not (so, between 'node' and 'device' tables initial load), processing of 'device' table on slave node fails on trying to insert a new row as it violates foreign key constraints as key isn't present in 'node' table. How can I handle this issue?
Thanks