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

              
                                    


                                 
               


                      





                                       

              
                                        







                                    
       

       
        

                

                        
          

                     
              
           
               
        
            

              

               
                    
                                       
       

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

      def initialize left, right
        super()
        @left  = left
        @right = right
      end

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

      def hash
        [self.class, @left, @right].hash
      end

      def eql? other
        self.class == other.class &&
          self.left == other.left &&
          self.right == other.right
      end
      alias :== :eql?
    end

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