mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-26 04:24:21 +01:00
The `filter` methods for extensions affected by this fix expect arguments to be passed in a specific order. For example, `generate_series` assumes that if the `start` argument exists, it is always passed to `filter` first. If `start` does not exist, then `stop` is passed first — but `stop` must never come before `start`. Previously, this was not guaranteed: `best_index` relied on constraints being passed in the order matching `filter`'s expectations.