Method: Arel::Table#eql?

Defined in:
activerecord/lib/arel/table.rb

#eql?(other) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)

95
96
97
98
99
# File 'activerecord/lib/arel/table.rb', line 95

def eql?(other)
  self.class == other.class &&
    self.name == other.name &&
    self.table_alias == other.table_alias
end