I'd like to copy from with csv file with Postgres.
That csv file has array literal whose delimiter is ;
.
example: a,b,c,{1;2;3}
I did that with replacing delimiter of csv file ,
to |
and set option delimiter |
and replacing delimiter of array literal ;
to ,
.
example: a|b|c|{1,2,3}
I think there may be option to set delimiter of array literal.
If so, I don't have to replace delimiter of csv file.
Are there any smarter way?