method
eql?
rails latest stable - Class:
Arel::Nodes::InsertStatement
eql?(other)public
No documentation available.
# File activerecord/lib/arel/nodes/insert_statement.rb, line 27
def eql?(other)
self.class == other.class &&
self.relation == other.relation &&
self.columns == other.columns &&
self.select == other.select &&
self.values == other.values
end