aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/type_metadata.rb
blob: b7f647935750c68ff676d38ca9ceb8585d729672 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             
                   
             
                           


                                                         
 

                            
                               
 




                                                          
 






                                             
 





                             





                                              
         
       
                                                     

     
# frozen_string_literal: true

module ActiveRecord
  # :stopdoc:
  module ConnectionAdapters
    module PostgreSQL
      class TypeMetadata < DelegateClass(SqlTypeMetadata)
        undef to_yaml if method_defined?(:to_yaml)

        include Deduplicable

        attr_reader :oid, :fmod

        def initialize(type_metadata, oid: nil, fmod: nil)
          super(type_metadata)
          @oid = oid
          @fmod = fmod
        end

        def ==(other)
          other.is_a?(TypeMetadata) &&
            __getobj__ == other.__getobj__ &&
            oid == other.oid &&
            fmod == other.fmod
        end
        alias eql? ==

        def hash
          TypeMetadata.hash ^
            __getobj__.hash ^
            oid.hash ^
            fmod.hash
        end

        private
          def deduplicated
            __setobj__(__getobj__.deduplicate)
            super
          end
      end
    end
    PostgreSQLTypeMetadata = PostgreSQL::TypeMetadata
  end
end