aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/querying.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-06-21 13:03:59 -0600
committerSean Griffin <sean@thoughtbot.com>2014-06-22 08:58:38 -0600
commit31911a409c2cfe4c6fef550d913487163b3b938e (patch)
treeb4f8fcb4d793cfff4e9371591555e8992aa30864 /activerecord/lib/active_record/querying.rb
parent281c92a346fe3575c417003b63d66f7f3a0a259c (diff)
downloadrails-31911a409c2cfe4c6fef550d913487163b3b938e.tar.gz
rails-31911a409c2cfe4c6fef550d913487163b3b938e.tar.bz2
rails-31911a409c2cfe4c6fef550d913487163b3b938e.zip
Remove old deprecation warning
This has been around for a couple of versions now, a `NoMethodError` should suffice at this point.
Diffstat (limited to 'activerecord/lib/active_record/querying.rb')
-rw-r--r--activerecord/lib/active_record/querying.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/activerecord/lib/active_record/querying.rb b/activerecord/lib/active_record/querying.rb
index 39817703cd..a9ddd9141f 100644
--- a/activerecord/lib/active_record/querying.rb
+++ b/activerecord/lib/active_record/querying.rb
@@ -37,14 +37,7 @@ module ActiveRecord
# Post.find_by_sql ["SELECT body FROM comments WHERE author = :user_id OR approved_by = :user_id", { :user_id => user_id }]
def find_by_sql(sql, binds = [])
result_set = connection.select_all(sanitize_sql(sql), "#{name} Load", binds)
- column_types = {}
-
- if result_set.respond_to? :column_types
- column_types = result_set.column_types.except(*columns_hash.keys)
- else
- ActiveSupport::Deprecation.warn "the object returned from `select_all` must respond to `column_types`"
- end
-
+ column_types = result_set.column_types.except(*columns_hash.keys)
result_set.map { |record| instantiate(record, column_types) }
end