Class: ActiveRecord::PredicateBuilder::RelationHandler
- Inherits:
-
Object
- Object
- ActiveRecord::PredicateBuilder::RelationHandler
- Defined in:
- 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 '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 |