Luca Cappelletti
Luca Cappelletti
> It seems reasonable to me -- one way to judge the impact of such a change would be to try it out with some other downstream project (e.g. DataFusion)....
Ping to request I am expected to do with this, happy to remove the test if it is indeed pointless.
High compile time of crates using sqlparser(codegen phase) - any way to reduce generated code?​​
Hi, which compilation flags are you using? I assume you are using the visitor-generated code, otherwise a trivial solution is not to enable that feature. How much does the compilation...
High compile time of crates using sqlparser(codegen phase) - any way to reduce generated code?​​
There was recently an update in the sqlparser derive crate - have you already tried whether the new version has improved / worsened these time requirements?
Hi all, is there any development regarding this feature? Was it possibly added in some other PR? I am looking for a way to clear the redis cache.
The newly added dependency `csv` does not have an analogous `no-std` version, so the alloc-only test is currently failing. I will see whether a PR to `csv` adding support for...
I have decided to replace the [`csv`](https://github.com/BurntSushi/rust-csv) crate with a custom solution as right now that crate does not provide an alloc-only feature, and it seems rather complex to make...
> Thanks @LucaCappelletti94 and sorry for the delay in getting back to this. I haven't looked at the PR in depth but I think so far I'm not comfortable with...
This refactor is mostly motivated by three reasons: improved code cleanliness, and ideally, reduced memory footprint and time requirements. Regarding code cleanliness, it removes certain code complexity from the parser...