# File lib/arel/nodes/insert_statement.rb, line 23
      def eql? other
        self.class == other.class &&
          self.relation == other.relation &&
          self.columns == other.columns &&
          self.values == other.values
      end