v.1.1.54362New Feature
Support for Arbitrary Expressions in LIMIT BY Clauses
Arbitrary expressions are supported inLIMIT BYclauses. Previously, it was only possible to use columns resulting fromSELECT.
Why it matters
This feature allows more flexible and powerful usage of theLIMIT BY clause by enabling arbitrary expressions, which were previously restricted to simple column references. It helps users perform more complex row limiting based on calculated or transformed values within queries.How to use it
Use arbitrary expressions directly within theLIMIT BY clause in your SQL queries. For example, instead of limiting by a column, you can use expressions such as LIMIT BY a + b, n where a + b is an arbitrary expression.