aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2015-01-25 14:47:47 -0700
committerSean Griffin <sean@thoughtbot.com>2015-01-25 14:48:11 -0700
commitd36a769234911c8374e09069eb054d4c60eb1b99 (patch)
treea0eaae5512eb087d47709c0b5c843c940aaf0793 /lib/arel/nodes
parent9d773cd116601002a2121d6c3858cd0660c87bb0 (diff)
downloadrails-d36a769234911c8374e09069eb054d4c60eb1b99.tar.gz
rails-d36a769234911c8374e09069eb054d4c60eb1b99.tar.bz2
rails-d36a769234911c8374e09069eb054d4c60eb1b99.zip
Implement equality for `BindParam`
It is impossible to test equality of things constructing trees with bind params otherwise.
Diffstat (limited to 'lib/arel/nodes')
-rw-r--r--lib/arel/nodes/bind_param.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/arel/nodes/bind_param.rb b/lib/arel/nodes/bind_param.rb
index 160bc21b91..3a4aedc4ba 100644
--- a/lib/arel/nodes/bind_param.rb
+++ b/lib/arel/nodes/bind_param.rb
@@ -1,6 +1,9 @@
module Arel
module Nodes
class BindParam < Node
+ def ==(other)
+ other.is_a?(BindParam)
+ end
end
end
end