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






                              
                              
         
 



                    
                      





                            
                                
             
                                               
                                         
                                    
                                    
                                     
                                     
                                                 
         


              
                                                                   
                                                        


              
                     

                                        
                                                        
                                                          


                                                  
                                          

                                          

                     


       
# frozen_string_literal: true

module Arel # :nodoc: all
  module Nodes
    class SelectCore < Arel::Nodes::Node
      attr_accessor :projections, :wheres, :groups, :windows, :comment
      attr_accessor :havings, :source, :set_quantifier, :optimizer_hints

      def initialize
        super()
        @source = JoinSource.new nil

        # https://ronsavage.github.io/SQL/sql-92.bnf.html#set%20quantifier
        @set_quantifier  = nil
        @optimizer_hints = nil
        @projections     = []
        @wheres          = []
        @groups          = []
        @havings         = []
        @windows         = []
        @comment         = nil
      end

      def from
        @source.left
      end

      def from=(value)
        @source.left = value
      end

      alias :froms= :from=
      alias :froms :from

      def initialize_copy(other)
        super
        @source      = @source.clone if @source
        @projections = @projections.clone
        @wheres      = @wheres.clone
        @groups      = @groups.clone
        @havings     = @havings.clone
        @windows     = @windows.clone
        @comment     = @comment.clone if @comment
      end

      def hash
        [
          @source, @set_quantifier, @projections, @optimizer_hints,
          @wheres, @groups, @havings, @windows, @comment
        ].hash
      end

      def eql?(other)
        self.class == other.class &&
          self.source == other.source &&
          self.set_quantifier == other.set_quantifier &&
          self.optimizer_hints == other.optimizer_hints &&
          self.projections == other.projections &&
          self.wheres == other.wheres &&
          self.groups == other.groups &&
          self.havings == other.havings &&
          self.windows == other.windows &&
          self.comment == other.comment
      end
      alias :== :eql?
    end
  end
end