Class: ActiveRecord::PredicateBuilder::RelationHandler

Inherits:
Object
  • Object
show all
Defined in:
activerecord/lib/active_record/relation/predicate_builder/relation_handler.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#call(attribute, value) ⇒ Object



4
5
6
7
8
9
10
# File 'activerecord/lib/active_record/relation/predicate_builder/relation_handler.rb', line 4

def call(attribute, value)
  if value.select_values.empty?
    value = value.select(value.klass.arel_table[value.klass.primary_key])
  end

  attribute.in(value.arel.ast)
end