Sha256: 000996098630439a45c73e7b0aca6fdeecb6f59546c6506dcd1bc8520d382991
Contents?: true
Size: 1.09 KB
Versions: 3
Compression:
Stored size: 1.09 KB
Contents
# frozen_string_literal: true module ActiveRecord class PredicateBuilder class AssociationQueryValue # :nodoc: def initialize(associated_table, value) @associated_table = associated_table @value = value end def queries [associated_table.association_join_foreign_key.to_s => ids] end # TODO Change this to private once we've dropped Ruby 2.2 support. # Workaround for Ruby 2.2 "private attribute?" warning. protected attr_reader :associated_table, :value private def ids case value when Relation value.select_values.empty? ? value.select(primary_key) : value when Array value.map { |v| convert_to_id(v) } else convert_to_id(value) end end def primary_key associated_table.association_join_keys.key end def convert_to_id(value) case value when Base value._read_attribute(primary_key) else value end end end end end
Version data entries
3 entries across 3 versions & 2 rubygems