aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb')
-rw-r--r--activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb b/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
index b18ec23037..bc7894173d 100644
--- a/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
+++ b/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb
@@ -88,14 +88,14 @@ module ActiveRecord
super(join_table)
end
- def finder_options
- super.merge(
- :joins => construct_joins,
- :readonly => ambiguous_select?(@reflection.options[:select]),
- :select => @reflection.options[:select] || [
- @reflection.klass.arel_table[Arel.star],
- join_table[Arel.star]]
- )
+ def association_scope
+ scope = super.joins(construct_joins)
+ scope = scope.readonly if ambiguous_select?(@reflection.options[:select])
+ scope
+ end
+
+ def select_value
+ super || [@reflection.klass.arel_table[Arel.star], join_table[Arel.star]]
end
# Join tables with additional columns on top of the two foreign keys must be considered