Show HN: Private real-time dictation app for Mac (github.com)
9 points by aviaryan 8h ago 2 comments
Show HN: QuizKnit, an open source quiz creator (quizknit.com)
3 points by jibolash 6h ago 0 comments
Show HN: My Cross-Platform MySQL Parser (abbychau.github.io)
4 points by abbychau 11h ago 0 comments
How often is the query plan optimal?
3 eatonphil 1 6/30/2025, 3:19:27 PM vondra.me ↗
This applies the filter before the join, compared with:
Select from mytable1 join mytable2 on... Where...
Which relies on the query plan to resolve the correct application of where, and hope it puts the where before the join.
This becomes more important in the cloud, where Iceberg tables cannot be benchmarked in the same way as single-cluster relational DBs.