You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it'evaluates single condition for multiple `belongs_to` associations to the same table'do# Why Search.new(Recommendation.joins(:person, :target_person)...) is not the same thing?s=Recommendation.joins(:person,:target_person).ransack({target_person_name_eq: 'Test'},).resultexpect(s).tobe_anActiveRecord::Relationreal_query=remove_quotes_and_backticks(s.to_sql)expected_query=<<-SQL SELECT recommendations.* FROM recommendations INNER JOIN people ON people.id = recommendations.person_id INNER JOIN people target_people_recommendations ON target_people_recommendations.id = recommendations.target_person_id WHERE target_people_recommendations.name = 'Test' SQL.squishexpect(real_query).toeqexpected_queryend
It results in:
WHEREpeople.name='Test'"
Instead of:
WHEREtarget_people_recommendations.name='Test'"
And it only happens if there isn't a filter on the other table, If I write what the existing spec is testing:
WHERE (people.name='Ernie'ANDtarget_people_recommendations.name='Test')"
This looks like a bug to me, I have one query that I need to join the same table twice, and this is getting the wrong results. I'm joining both tables because I'm selecting specific columns from both tables, but I need to filter by the aliased one.
The text was updated successfully, but these errors were encountered:
I wrote this failing spec:
It results in:
Instead of:
And it only happens if there isn't a filter on the other table, If I write what the existing spec is testing:
Then it works as expected:
This looks like a bug to me, I have one query that I need to join the same table twice, and this is getting the wrong results. I'm joining both tables because I'm selecting specific columns from both tables, but I need to filter by the aliased one.
The text was updated successfully, but these errors were encountered: