diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2014-10-24 17:03:14 -0500 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2014-10-24 17:03:14 -0500 |
commit | 9911ff53c9f94cb6852c28791a06b5cd10e49f6f (patch) | |
tree | dbb13a31bc2e9c523066e50a4833b0ee728d218c /lib | |
parent | 0e6c7e6de73fdddaf7f1486657f4d9f8e8f5fde3 (diff) | |
parent | 0c99711a1564bf1cb213b35142a3c05feddef0bd (diff) | |
download | rails-9911ff53c9f94cb6852c28791a06b5cd10e49f6f.tar.gz rails-9911ff53c9f94cb6852c28791a06b5cd10e49f6f.tar.bz2 rails-9911ff53c9f94cb6852c28791a06b5cd10e49f6f.zip |
Merge pull request #330 from sgrif/sg-binary-node-hash-equality
Binary nodes should not generate the same hash as nodes of other classes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/arel/nodes/binary.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/nodes/binary.rb b/lib/arel/nodes/binary.rb index e35d2fd2e7..dddbde1431 100644 --- a/lib/arel/nodes/binary.rb +++ b/lib/arel/nodes/binary.rb @@ -16,7 +16,7 @@ module Arel end def hash - [@left, @right].hash + [self.class, @left, @right].hash end def eql? other |