manzt / quak

a scalable data profiler
https://manzt.github.io/quak/
MIT License
201 stars 9 forks source link

fix(standalone): Avoid DuckDB range requests with text files #49

Closed manzt closed 3 weeks ago

manzt commented 3 weeks ago

DuckDB-wasm started making range requests for text files when provided as a URL. Some APIs (noteably GitHub) do not support range requests. This meant that text files (which require full download anyways) just failed to work.

This PR maually fetches text files (without range requests) and registered the contents for DuckDB-wasm to use.