aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/nodes/bind_param.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/arel/nodes/bind_param.rb')
-rw-r--r--activerecord/lib/arel/nodes/bind_param.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/arel/nodes/bind_param.rb b/activerecord/lib/arel/nodes/bind_param.rb
index f145e44ae3..344e46479f 100644
--- a/activerecord/lib/arel/nodes/bind_param.rb
+++ b/activerecord/lib/arel/nodes/bind_param.rb
@@ -28,8 +28,8 @@ module Arel # :nodoc: all
value.respond_to?(:infinite?) && value.infinite?
end
- def boundable?
- !value.respond_to?(:boundable?) || value.boundable?
+ def unboundable?
+ value.respond_to?(:unboundable?) && value.unboundable?
end
end
end