aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/nodes/true.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/arel/nodes/true.rb')
-rw-r--r--activerecord/lib/arel/nodes/true.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/arel/nodes/true.rb b/activerecord/lib/arel/nodes/true.rb
index fdb8ed2095..8de1f7522f 100644
--- a/activerecord/lib/arel/nodes/true.rb
+++ b/activerecord/lib/arel/nodes/true.rb
@@ -1,4 +1,5 @@
# frozen_string_literal: true
+
module Arel
module Nodes
class True < Arel::Nodes::NodeExpression
@@ -6,7 +7,7 @@ module Arel
self.class.hash
end
- def eql? other
+ def eql?(other)
self.class == other.class
end
alias :== :eql?