diff options
author | Sean Griffin <sean@thoughtbot.com> | 2015-01-25 14:47:47 -0700 |
---|---|---|
committer | Sean Griffin <sean@thoughtbot.com> | 2015-01-25 14:48:11 -0700 |
commit | d36a769234911c8374e09069eb054d4c60eb1b99 (patch) | |
tree | a0eaae5512eb087d47709c0b5c843c940aaf0793 /lib/arel | |
parent | 9d773cd116601002a2121d6c3858cd0660c87bb0 (diff) | |
download | rails-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')
-rw-r--r-- | lib/arel/nodes/bind_param.rb | 3 |
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 |