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