Daniël Heres
Daniël Heres
It might make sense to have a look at supporting Arrow Flight as endpoint, this looks to be a good match with roapi. https://arrow.apache.org/docs/format/Flight.html
# Which issue does this PR close? Closes #3050 # Rationale for this change Currently we can not group by binary values # What changes are included in this PR?...
I am writing something that compiles to JSON. Simple code: ``` start = a a = x:(.*) {return x.join("{")} ``` doesn't work. workaround is: ``` = x:(.*) {return x.join(String.fromCharCode(123))} ```...
I want to write down some ideas about increasing support for commonly used SQL statement. Some different ideas for doing more testing: 1. Add SQL corpora that should be parsed...
It would be great to have support for `CREATE FUNCTION` statement to define UDFs. I think it makes sense to develop the more minimal variant of BigQuery first: support for...
It would be useful to have clear parser errors which have the position (line and column) printed. Now for some errors there is information of where the error happened: `Unterminated...
Now that sqlparser-rs is under a new repo and shared with multiple owners/maintainers, it makes sense to standardize the release process a bit. I was thinking of publishing a crate...
The fuzzer (https://github.com/ballista-compute/sqlparser-rs/pull/211) I am running with a timeout of 1 second. After running for a while, it finds a number of queries which are taking longer than one second...
Rust by default compiles towards a very old architecture, which limit the performance of the. We should probably update this with a newer An example of Polars usage: https://github.com/pola-rs/polars/blob/master/.github/deploy_manylinux.sh#L11 There...
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** We recently added optimizations for `ORDER BY expr LIMIT` by pushing limits...