diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2012-04-30 22:15:29 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2012-04-30 22:18:35 +0100 |
commit | 838101ae04be06138f1bd7418473092b92754293 (patch) | |
tree | 7f8eacfdb22f0437b7c59b691f84116c88493e75 /activerecord/lib/active_record | |
parent | b7ec8755bc47599b91d648788f3073a36d7d8413 (diff) | |
download | rails-838101ae04be06138f1bd7418473092b92754293.tar.gz rails-838101ae04be06138f1bd7418473092b92754293.tar.bz2 rails-838101ae04be06138f1bd7418473092b92754293.zip |
Fix PR #6091
1. ActiveRecord::Base is not ActiveRecord::Relation
2. The order of records from an SQL query is uncertain without an ORDER clause
3. Run your own tests when submitting a pull request
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/querying.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/querying.rb b/activerecord/lib/active_record/querying.rb index 95565b503a..29b8b2fb73 100644 --- a/activerecord/lib/active_record/querying.rb +++ b/activerecord/lib/active_record/querying.rb @@ -11,7 +11,7 @@ module ActiveRecord delegate :select, :group, :order, :except, :reorder, :limit, :offset, :joins, :where, :preload, :eager_load, :includes, :from, :lock, :readonly, :having, :create_with, :uniq, :references, :none, :to => :scoped - delegate :count, :average, :minimum, :maximum, :sum, :calculate, :pluck, :to => :scoped + delegate :count, :average, :minimum, :maximum, :sum, :calculate, :pluck, :ids, :to => :scoped # Executes a custom SQL query against your database and returns all the results. The results will # be returned as an array with columns requested encapsulated as attributes of the model you call |