cube2222/octosql

Parquet output format

chapmanjacobd opened this issue · 1 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"