When a field is varbinary in mysql (e.g. actor_name), the postgres version to be TEXT and not binary (BYTEA) because INSERT SELECT from other columns that are string break, or insert with integer values (while it doesn't break with TEXT type). For now, these columns are diverging.
Maybe it needs to do proper casting before inserting anything and then we can fix it.