Sha256: 4cbb8b95d35ff09dd4b526e6eebea21a7b797f5db7622f6fa4fc60646d0bfb1e

Contents?: true

Size: 1.99 KB

Versions: 11

Compression:

Stored size: 1.99 KB

Contents

module ActiveRecord
  module Core
    silence_warnings do
      def initialize_dup(other) # :nodoc:
        @attributes = @attributes.dup
        # CPK
        # @attributes.reset(self.class.primary_key)
        Array(self.class.primary_key).each {|key| @attributes.reset(key)}

        run_callbacks(:initialize) unless _initialize_callbacks.empty?

        @aggregation_cache = {}
        @association_cache = {}

        @new_record  = true
        @destroyed   = false

        super
      end
    end

    module ClassMethods
      silence_warnings do
        def find(*ids) # :nodoc:
          # We don't have cache keys for this stuff yet
          return super unless ids.length == 1
          return super if block_given? ||
                          primary_key.nil? ||
                          scope_attributes? ||
                          columns_hash.include?(inheritance_column) ||
                          ids.first.kind_of?(Array)
          # CPK
          return super if self.composite?

          id  = ids.first
          if ActiveRecord::Base === id
            id = id.id
            ActiveSupport::Deprecation.warn(<<-MSG.squish)
              You are passing an instance of ActiveRecord::Base to `find`.
              Please pass the id of the object by calling `.id`
            MSG
          end

          key = primary_key

          statement = cached_find_by_statement(key) { |params|
            where(key => params.bind).limit(1)
          }
          record = statement.execute([id], self, connection).first
          unless record
            raise RecordNotFound.new("Couldn't find #{name} with '#{primary_key}'=#{id}",
                                     name, primary_key, id)
          end
          record
        rescue RangeError
          raise RecordNotFound.new("Couldn't find #{name} with an out of range value for '#{primary_key}'",
                                   name, primary_key)
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
composite_primary_keys-9.0.10 lib/composite_primary_keys/core.rb
composite_primary_keys-9.0.9 lib/composite_primary_keys/core.rb
composite_primary_keys-9.0.8 lib/composite_primary_keys/core.rb
composite_primary_keys-9.0.7 lib/composite_primary_keys/core.rb
composite_primary_keys-9.0.6 lib/composite_primary_keys/core.rb
composite_primary_keys-9.0.5 lib/composite_primary_keys/core.rb
composite_primary_keys-9.0.4 lib/composite_primary_keys/core.rb
composite_primary_keys-9.0.2 lib/composite_primary_keys/core.rb
composite_primary_keys-9.0.1 lib/composite_primary_keys/core.rb
composite_primary_keys-9.0.0 lib/composite_primary_keys/core.rb
composite_primary_keys-9.0.0.beta1 lib/composite_primary_keys/core.rb