method
add_constraints
v7.0.0 -
Show latest stable
-
0 notes -
Class: DisableJoinsAssociationScope
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.0
- 6.1.3.1
- 6.1.7.7
- 7.0.0 (0)
- 7.1.3.2 (0)
- 7.1.3.4 (0)
- What's this?
add_constraints(reflection, key, join_ids, owner, ordered)
private
Hide source
# File activerecord/lib/active_record/associations/disable_joins_association_scope.rb, line 33 def add_constraints(reflection, key, join_ids, owner, ordered) scope = reflection.build_scope(reflection.aliased_table).where(key => join_ids) relation = reflection.klass.scope_for_association scope.merge!( relation.except(:select, :create_with, :includes, :preload, :eager_load, :joins, :left_outer_joins) ) scope = reflection.constraints.inject(scope) do |memo, scope_chain_item| item = eval_scope(reflection, scope_chain_item, owner) scope.unscope!(*item.unscope_values) scope.where_clause += item.where_clause scope.order_values = item.order_values | scope.order_values scope end if scope.order_values.empty? && ordered split_scope = DisableJoinsAssociationRelation.create(scope.klass, key, join_ids) split_scope.where_clause += scope.where_clause split_scope else scope end end