aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/relations/operations/skip.rb
blob: a9157e914ccb18099d8635096827bc2f8b09d78d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Arel
  class Skip < Compound
    attr_reader :relation, :skipped

    def initialize relation, skipped
      super(relation)
      @skipped = skipped
    end

    def eval
      unoperated_rows[skipped..-1]
    end
  end
end