method

eql?

v7.2.3 - Show latest stable - Class: Arel::Nodes::Cte
eql?(other)
public

No documentation available.

# File activerecord/lib/arel/nodes/cte.rb, line 19
      def eql?(other)
        self.class == other.class &&
          self.name == other.name &&
          self.relation == other.relation &&
          self.materialized == other.materialized
      end