method
eql?
v8.1.1 -
Show latest stable
- Class:
Arel::Nodes::BoundSqlLiteral
eql?(other)public
No documentation available.
# File activerecord/lib/arel/nodes/bound_sql_literal.rb, line 46
def eql?(other)
self.class == other.class &&
sql_with_placeholders == other.sql_with_placeholders &&
positional_binds == other.positional_binds &&
named_binds == other.named_binds
end