|< < 21 > >|

Combining operators

Sort, Project, and Unique

Eliminate duplicates during merge phase of Sort

Note that Unique(Sort, ...)) actually does two sorts:

  • The explicit Sort operator.

  • The implementation of Unique does a sort.

Duplicate elimination can be done by the merge phase of Sort.

|< < 21 > >|