Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
distsql: support window functions in distsql
Adds support of window functions in DistSQL. A stage of windower processors is added for a particular PARTITION BY scheme, all window functions with the same partitioning are processed by that stage. We also cache sorted partitions if more than one window function has the same ORDER BY clause. A doc describing the details of the implementation is out. Note: memory accounting is not done, I plan on adding that after this PR. Resolves: cockroachdb#24425. Release note: None
- Loading branch information