Changes between Version 1 and Version 2 of Ticket #34450, comment 9
- Timestamp:
- Apr 1, 2023, 6:07:21 AM (20 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34450, comment 9
v1 v2 5 5 }}} 6 6 7 should be demoted (produce an inner join) because at the moment `build_filter()` doesn't attempt to find any "needed inners" for anything that looks like an expression, thus `_add_q()` doesn't have anything to try to demote to. 7 should be demoted (produce an inner join) because at it produces a left join even with Simon's patch. 8 9 This is because the moment `build_filter()` doesn't attempt to find any "needed inners" for anything that looks like an expression, thus `_add_q()` doesn't have anything to try to demote to. 8 10 9 11 🙂