method

merge

merge(other)
public

No documentation available.

# File activerecord/lib/active_record/relation/where_clause.rb, line 20
      def merge(other)
        WhereClause.new(
          predicates_unreferenced_by(other) + other.predicates,
          non_conflicting_binds(other) + other.binds,
        )
      end