This commit is contained in:
Rafael Mendonça França 2021-12-20 22:47:24 +00:00
commit f8f8d976d2
No known key found for this signature in database
GPG Key ID: FC23B6D0F1EEE948
4 changed files with 15 additions and 2 deletions

View File

@ -1031,7 +1031,7 @@ module ActiveRecord
end
def join_scopes(table, predicate_builder, klass = self.klass, record = nil) # :nodoc:
scopes = @previous_reflection.join_scopes(table, predicate_builder, record) + super
scopes = @previous_reflection.join_scopes(table, predicate_builder, klass, record) + super
scopes << build_scope(table, predicate_builder, klass).instance_exec(record, &source_type_scope)
end

View File

@ -116,7 +116,7 @@ class HasManyAssociationsTest < ActiveRecord::TestCase
fixtures :accounts, :categories, :companies, :developers, :projects,
:developers_projects, :topics, :authors, :author_addresses, :comments,
:posts, :readers, :taggings, :cars, :tags,
:categorizations, :zines, :interests
:categorizations, :zines, :interests, :humans
def setup
Client.destroyed_client_ids.clear
@ -2555,6 +2555,14 @@ class HasManyAssociationsTest < ActiveRecord::TestCase
assert_equal post, image.imageable
end
def test_joining_through_a_polymorphic_association_with_a_where_clause
writer = humans(:gordon)
category = categories(:general)
TypedEssay.create! category: category, writer: writer
assert_equal 1, Category.joins(:human_writers_of_typed_essays).count
end
def test_build_with_polymorphic_has_many_does_not_allow_to_override_type_and_id
welcome = posts(:welcome)
tagging = welcome.taggings.build(taggable_id: 99, taggable_type: "ShouldNotChange")

View File

@ -30,6 +30,9 @@ class Category < ActiveRecord::Base
has_many :authors, through: :categorizations
has_many :authors_with_select, -> { select "authors.*, categorizations.post_id" }, through: :categorizations, source: :author
has_many :essays, primary_key: :name
has_many :human_writers_of_typed_essays, -> { where(essays: { type: TypedEssay.name }) }, through: :essays, source: :writer, source_type: "Human", primary_key: :name
scope :general, -> { where(name: "General") }
# Should be delegated `ast` and `locked` to `arel`.

View File

@ -9,3 +9,5 @@ end
class EssaySpecial < Essay
end
class TypedEssay < Essay
end