method

eql?

rails latest stable - Class: Arel::Nodes::SelectStatement
eql?(other)
public

No documentation available.

# File activerecord/lib/arel/nodes/select_statement.rb, line 29
      def eql?(other)
        self.class == other.class &&
          self.cores == other.cores &&
          self.orders == other.orders &&
          self.limit == other.limit &&
          self.lock == other.lock &&
          self.offset == other.offset &&
          self.with == other.with
      end