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

                    




                  
                     



                                    
       

       
         

                
           

                     
             
           
          

            
        
                    
              
            


                                       

     
# frozen_string_literal: true

module Arel # :nodoc: all
  module Nodes
    class Unary < Arel::Nodes::NodeExpression
      attr_accessor :expr
      alias :value :expr

      def initialize(expr)
        super()
        @expr = expr
      end

      def hash
        @expr.hash
      end

      def eql?(other)
        self.class == other.class &&
          self.expr == other.expr
      end
      alias :== :eql?
    end

    %w{
      Bin
      Cube
      DistinctOn
      Group
      GroupingElement
      GroupingSet
      Lateral
      Limit
      Lock
      Not
      Offset
      On
      OptimizerHints
      Ordering
      RollUp
    }.each do |name|
      const_set(name, Class.new(Unary))
    end
  end
end