diff options
author | Samer Masry <smasry@dryblis.com> | 2011-07-27 10:17:25 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-08-13 16:22:20 -0700 |
commit | c751bb1ac25c1b563cb55da2a25284f430e5e40e (patch) | |
tree | a93214fc0920674f993c3ccd28902bf62c072c10 /activerecord/test | |
parent | 45f9c2b3619d96867f9c6af7c16d2f5d53f1a17e (diff) | |
download | rails-c751bb1ac25c1b563cb55da2a25284f430e5e40e.tar.gz rails-c751bb1ac25c1b563cb55da2a25284f430e5e40e.tar.bz2 rails-c751bb1ac25c1b563cb55da2a25284f430e5e40e.zip |
Reverse order fix when using function for ActiveRecord::QueryMethods Fixes #1697
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/relations_test.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/cases/relations_test.rb b/activerecord/test/cases/relations_test.rb index 821da91f0a..8a2cf0ef85 100644 --- a/activerecord/test/cases/relations_test.rb +++ b/activerecord/test/cases/relations_test.rb @@ -911,6 +911,11 @@ class RelationTest < ActiveRecord::TestCase assert_equal 'zyke', FastCar.order_using_old_style.limit(1).first.name end + def test_order_with_function_and_last + authors = Author.scoped + assert_equal authors(:bob), authors.order( "id asc, MAX( organization_id, owned_essay_id)" ).last + end + def test_order_using_scoping car1 = CoolCar.order('id DESC').scoping do CoolCar.find(:first, :order => 'id asc') |