dolt
dolt copied to clipboard
Support Parquet as an output format in the `-r` option
Two related features that would have been useful fixing a recent bug:
Specifying an --asof
flag for exports:
> dolt export table --asof <revspec> mytable mytable.parquet
Supporting --format pq
for the sql
command:
> dolt sql -r pq -q "select * from mytable as of <root value>"
For the first one, you can just checkout the branch. The second one would be nice.
Parquet output support for dolt sql
is included in https://github.com/dolthub/dolt/pull/6068
Jason fixed this :-)