Ádám Lippai
Ádám Lippai
What I really miss in the Arrow JS lib, that I have to write row based accumulators or lookups in JS to achieve synthetic accumulators (sum, avg, cumsum). As DataFusion...
Currently the semver matches react v16 only, which introduces duplicated `react-is` (v16 and v17).
In JavaScript usually there is no need for a StringBuilder. Are you sure it helps the performance? AFAIK `+=` for strings is fast in every browser, it's only necessary if...
It's basically a postgresql flavor, the basic query parsing and wire protocol should be the same, the initial handshake might be slightly different
If I'm right this only requires a wrapper which adds (mime)type information - like it's available for MediaStream, File and Blob.
I've tried to build turbodbc based on https://turbodbc.readthedocs.io/en/latest/pages/contributing.html#development-version in order to develop it (I've always did it using the web editor ¯\_(ツ)_/¯). A few issues I'm facing when trying to...
As only HTML comment blocks are supported you can't process blocks in JS Web Workers. Can you add support for `/* build: ... */` blocks next to the HTML's ``?
It failed if there was no newline character at the end of the `` tag. Replaced only the first occurrence.
Is it possible - similarly to Turbodbc - to get the resultset in Arrow format efficiently?
With default options I made the following measurements using a 10m row table with few int32, int64, double, date, timestamp columns (so no string or other exotic type). ``` tool...