method
eql?
rails latest stable - Class:
Arel::Nodes::BoundSqlLiteral
eql?(other)public
No documentation available.
# File activerecord/lib/arel/nodes/bound_sql_literal.rb, line 42
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