aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/algebra/relations/operations/take.rb
blob: eb32ec492e345364c4b18c44ae7cf86126378b35 (plain) (tree)
1
2
3
4
5
6
7
8
9
           
                       

                                
 


                       
     
   
module Arel
  class Take < Compound
    attributes :relation, :taken
    deriving :initialize, :==

    def externalizable?
      true
    end
  end
end