transferwise / pipelinewise-target-postgres

Singer.io Target for PostgreSQL - PipelineWise compatible
https://transferwise.github.io/pipelinewise/
Other
21 stars 39 forks source link

fix: write to file in CSV format, not in JSON #132

Open cwegener opened 10 months ago

cwegener commented 10 months ago

writing in JSON format does not make sense.

The records in Postgres should arrive exactly as they were scraped by a Tap at the source.

E.g. if a string in the sources has control characters like LF (0x0a), the same string should also have LF in the postgres target and not '\n' like JSON format uses.

Fixes #131