Method: Sequel::Model::Associations::OneToManyAssociationReflection#apply_eager_graph_limit_strategy

Defined in:
lib/sequel/model/associations.rb

#apply_eager_graph_limit_strategy(strategy, ds) ⇒ Object

Support a correlated subquery limit strategy when using eager_graph.



1022
1023
1024
1025
1026
1027
1028
1029
# File 'lib/sequel/model/associations.rb', line 1022

def apply_eager_graph_limit_strategy(strategy, ds)
  case strategy
  when :correlated_subquery
    apply_correlated_subquery_limit_strategy(ds)
  else
    super
  end
end