cube2222 / octosql

OctoSQL is a query tool that allows you to join, analyse and transform data from multiple databases and file formats using SQL.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parquet output format

chapmanjacobd opened this issue · comments

It would be nice to be able to save to a binary format like Parquet or something.

There are line breaks in my data so that's causing CSV to wonk

Agreed adding Parquet as an output format makes sense.

Though btw. CSV should handle newlines just fine. It will just wrap the field in double-quotes.

~> echo '{"test": "value\nvalue"}' | octosql 'SELECT * FROM stdin.json' -o csv
test
"value
value"