Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix sync rule preview in case of boolean properties (#2905)
Sync rules created for import sources, importing objects with boolean properties, throws `SQLSTATE` error as shown in the screenshot below. ![Sync Preview SQL State error](https://github.com/user-attachments/assets/7c1f27f1-0c98-4945-8599-1e60ea5c9574) The reason for this is because the preview creates temporary branched objects by importing the objects' properties to check for the modifications. And the boolean properties, were not transformed to `y` or `n` (which is the supported datatype for boolean (`ENUM('y','n')`) to store in the database) before the temporary object is created. fixes ref/IP/53248
- Loading branch information