aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/binary.rb
blob: bcd46db39890d972d441f75fff82cfbc32f6b423 (plain) (tree)
1
2
3
4
5
6
7
8
9

              
                                    





                                 





                                       
       

       
        


                  

                        
          


                     
              
           
        

              

               
                    
                                       
       

     
module Arel
  module Nodes
    class Binary < Arel::Nodes::Node
      attr_accessor :left, :right

      def initialize left, right
        @left  = left
        @right = right
      end

      def initialize_copy other
        super
        @left  = @left.clone if @left
        @right = @right.clone if @right
      end
    end

    %w{
      As
      Assignment
      Between
      DoesNotMatch
      GreaterThan
      GreaterThanOrEqual
      Join
      LessThan
      LessThanOrEqual
      Matches
      NotEqual
      NotIn
      Or
      Union
      UnionAll
      Intersect
      Except
    }.each do |name|
      const_set name, Class.new(Binary)
    end
  end
end