We are configuring SymmetricDS Community Edition to synchronize data from a SQL Server source to a PostgreSQL target. The source table and target table have different schemas, and we need to perform a column mapping + datatype conversion during synchronization SQL Server column datatype deleted → bit (values: 0 or 1) PostgreSQL column datatype isactive → bit(1) BUT the value being sent in the batch is a string (varchar), like "0", "1" PostgreSQL does NOT accept varchar into a BIT column without explicit...