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

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

    def == other
      super ||
        Skip === other &&
        relation == other.relation &&
        skipped == other.skipped
    end

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