Skip to content

Commit

Permalink
Change the order argument from ('id') to ('taggings.id')
Browse files Browse the repository at this point in the history
to address ORA-00918 error
  • Loading branch information
yahonda committed Mar 28, 2012
1 parent 5f37260 commit ef3f809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activerecord/test/cases/associations/join_model_test.rb
Expand Up @@ -403,7 +403,7 @@ def test_has_many_through_has_many_find_by_id
end

def test_has_many_through_polymorphic_has_one
assert_equal Tagging.find(1,2).sort_by { |t| t.id }, authors(:david).tagging.order(:id)
assert_equal Tagging.find(1,2).sort_by { |t| t.id }, authors(:david).tagging.order('taggings.id')
end

def test_has_many_through_polymorphic_has_many
Expand Down

0 comments on commit ef3f809

Please sign in to comment.