adamviola / parquet-explorer

Explore Parquet files with SQL
MIT License
21 stars 5 forks source link

Make default query customizable #4

Closed robjhornby-ts closed 4 months ago

robjhornby-ts commented 9 months ago

It would be neat if the default query could be defined in a VSCode setting.

For example, I'd like to customize my default query to add LIMIT 100 to avoid loading the full dataset when I open a file

adamviola commented 9 months ago

FYI we LIMIT 100 by default. We fetch additional batches of 100 on scroll.

But a default query is a great idea. I'll get to this eventually, no guarantees on when. Feel free to submit a PR if you'd like it sooner

adamviola commented 4 months ago

Added with the v1.2.0 release!

robjhornby-ts commented 4 months ago

Thank you, nice addition!