mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 03:54:21 +01:00
We spend a lot of time especially in `GROUP BY` queries providing helpful comments for `EXPLAIN`, even when the query is not an `EXPLAIN`. So let's not do that Closes #784 ```sql Prepare `SELECT first_name, count(1) FROM users GROUP BY first_name HAVING count(1) > 1 ORDER BY cou... time: [4.2724 µs 4.2783 µs 4.2848 µs] change: [-6.1063% -5.7376% -5.3626%] (p = 0.00 < 0.05) Performance has improved. ``` doesn't affect the other trivial prepare benchmarks Closes #875