mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-30 14:34:22 +01:00
Mainly the performance impact here comes from removing some unnecessary checks and inlining `read_integer_fast()` directly into `op_column()`, but I also added some fiddly nano-optimizations for fun On main, we are roughly 3.4x slower than sqlite on `SELECT * FROM users LIMIT 100`, and here we are roughly 3.2x slower, which ain't much, but it's honest work. A more impactful optimization, but a much more annoying refactor, would be #2304 Closes #2516