|< < 20 > >|

Combining operators

Sort, Project, and Unique

Project early

To use this optimization, replace this:
Project( Sort(..., [a, b, c]), [a, b, c]))
with this:
Sort(..., [a, b, c], // Sort columns [a, b, c]) // Project columns

|< < 20 > >|