Changes between Version 1 and Version 2 of Ticket #35396, comment 1
- Timestamp:
- Apr 22, 2024, 5:24:25 PM (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35396, comment 1
v1 v2 1 Changing the behavior would trivial, adjust `Where.split_having_qualify` to always return everything in `qualify_node` when it's present and nothing in `where_node` or `having_node` but I don't think it's the right thing to do.1 Changing the behavior would be trivial, adjust `Where.split_having_qualify` to always return everything in `qualify_node` when it's present and nothing in `where_node` or `having_node` but I don't think it's the right thing to do. 2 2 3 3 The real problem here is the ambiguity of what should be done when users filter against non-windowed and windowed expressions at the same time. … … 64 64 `col1` = (`first`) AND `first_active` = True 65 65 }}} 66 67 It's a common pattern when you're interested in multiple values over the same window and why there's even a way to define window aliases that can be references by multiple window expressions.