aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/relations/operations/skip.rb
blob: 930e4c94ea3723ddeec026e7883b6a600baae87a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module Arel
  class Skip < Compound
    attributes :relation, :skipped
    deriving :initialize, :==
    
    def externalizable?
      true
    end
  end
end