Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
beliefer committed Feb 5, 2020
1 parent 8bcee2f commit 484e86a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -841,6 +841,10 @@ case class LocalLimit(limitExpr: Expression, child: LogicalPlan) extends OrderPr
}
}

/**
* A global (coordinated) limit with offset. This operator can skip at most `offsetExpr` number and
* emit at most `limitExpr` number in total.
*/
case class GlobalLimitAndOffset(
limitExpr: Expression,
offsetExpr: Expression,
Expand Down

0 comments on commit 484e86a

Please sign in to comment.