I had a table with arrays and batch sync failed with below error. It worked fine once I excluded that particular column.
Typical table looks like this:
CREATE TABLE example (
id serial PRIMARY KEY,
tags text[]
);
INSERT INTO example (tags)
VALUES (ARRAY['tag1', 'tag2', 'tag3']);