2pack: support export from normal string column to text long string column
Description
postgresql support well long string. so i modify some column (sql command) to long string.
now when i export 2pack from old (or pure) instance it will import empty to this column. reason: it treatment column like blob, so try to read from binary. solution: check if have text value, set like text, other treatment like blob
Also, noticed the opposite case is also broken - this is: in case a 2pack is generated on a system with a blob column, and then imported in a system where that column is string, the import leaves wrong data. Maybe could be worthy to fix that possibility also?
postgresql support well long string. so i modify some column (sql command) to long string.
now when i export 2pack from old (or pure) instance it will import empty to this column.
reason: it treatment column like blob, so try to read from binary.
solution: check if have text value, set like text, other treatment like blob