aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/where_clause_factory.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-10-17 19:40:10 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-10-17 19:40:10 -0300
commit6c36c369be0cdd8f5f5b47f77ba79d492db98f32 (patch)
tree256d06897322d66b5dd3390f28bb0be4717ccdc9 /activerecord/lib/active_record/relation/where_clause_factory.rb
parentbae2292d8f32eb6e3c67a0ca57bd6053648d82c3 (diff)
downloadrails-6c36c369be0cdd8f5f5b47f77ba79d492db98f32.tar.gz
rails-6c36c369be0cdd8f5f5b47f77ba79d492db98f32.tar.bz2
rails-6c36c369be0cdd8f5f5b47f77ba79d492db98f32.zip
Revert "Move the handling of supported arguments to `where`"
This reverts commit 4d8f62dcfa0a5157b3facbd71f75fc6639636347. Reason: This broke the build. Please recommit again when it is green.
Diffstat (limited to 'activerecord/lib/active_record/relation/where_clause_factory.rb')
-rw-r--r--activerecord/lib/active_record/relation/where_clause_factory.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation/where_clause_factory.rb b/activerecord/lib/active_record/relation/where_clause_factory.rb
index 9662756c2e..83ac074f97 100644
--- a/activerecord/lib/active_record/relation/where_clause_factory.rb
+++ b/activerecord/lib/active_record/relation/where_clause_factory.rb
@@ -21,7 +21,7 @@ module ActiveRecord
parts = predicate_builder.build_from_hash(attributes)
else
- raise ArgumentError, "Unsupported argument type: #{opts} (#{opts.class})"
+ parts = [opts]
end
WhereClause.new(parts, binds)