Austin Bonander
Austin Bonander
Technically breaking since it can change the output of analysis. Also kind of why I'm starting to think maybe we should parse the SQL. The output of `EXPLAIN` isn't meant...
It'd be on-par with parsing the `EXPLAIN` output, and one less round-trip to the server (which is going to be where most of the overhead is anyway).
I'm leaning more and more towards parsing the query, because I've been trying to debug the reports in #3546 and the query plan parsing, for SQLite especially, is just completely...
Yeah, that's about 3 big projects down on the to-do list. I plan to put out a roadmap alongside the 0.9 release so people have more of an idea of...
Thank you for your effort, but after some thought I realized that `Pool` needed significant internal changes to improve its behavior. So this has been superceded by #3582.
The first problem is reliably getting the compiler to run. If you run `cargo check` but no project files have changed, Cargo won't do anything. Of course, we need the...
With call-site hygiene stabilized in 1.45, the explicit binding could actually be omitted: ```rust let name = 320; query!("select ?name"); ```
This is a related issue of supporting named parameters in general. Implementing #875 would close both issues.