Hi everyone
I am using tap-csv & target-postgres, my source csv contains evaluated unicode characters but when I run tap-csv | target-postgres the data that is written to the postgres table contains escaped unicode characters (ex: \u2013). I have confirmed that my source csv file contains evaluated unicode characters and is encoded in utf-8, i have also included
"encoding": "UTF-8"
in the tap-csv config.
Any suggestions what else I can try to stop unicode characters from being escaped in the postgres table?
Thank you