aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/relations/row.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/algebra/relations/row.rb')
-rw-r--r--lib/arel/algebra/relations/row.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/arel/algebra/relations/row.rb b/lib/arel/algebra/relations/row.rb
index f5fe364b83..f303dcd8d1 100644
--- a/lib/arel/algebra/relations/row.rb
+++ b/lib/arel/algebra/relations/row.rb
@@ -7,13 +7,6 @@ module Arel
@tuple = tuple
end
- def == other
- super ||
- Row === other &&
- relation == other.relation &&
- tuple == other.tuple
- end
-
def [](attribute)
attribute.type_cast(tuple[relation.position_of(attribute)])
end