Reputation: 670
I'm doing multi-homing SymmetricDS with 2 nodes (server and client) and single MySQL database, and I do transformation table and column, but at client node appear an error "java.lang.IllegalArgumentException: No enum constant org.jumpmind.symmetric.io.data.transform.ColumnPolicy.specified".
I (un)delete column_policy from sym_transform_table and nothing happened. What's wrong?
Upvotes: 1
Views: 291
Reputation: 670
I got the answer, I should make column_policy at SYM_TRANSFORM_TABLE in UPPERCASE MODE. And also apply in other enum.
Upvotes: 1
Reputation: 64632
this is going to fix the problem:
update sym_transform_table
set column_policy = 'SPECIFIED'
where column_policy = 'specified';
commit;
Upvotes: 1