aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/relations/operations/take.rb
blob: cc636642b1e04f49a54c1b0dc3aaf29f7fc0867a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Arel
  class Take < Compound
    attributes :relation, :taken
    deriving   :initialize, :==
    requires   :limiting

    def externalizable?
      true
    end
  end
end