method

merge_clauses

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: Merger
merge_clauses() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/relation/merger.rb, line 154
        def merge_clauses
          CLAUSE_METHODS.each do |method|
            clause = relation.get_value(method)
            other_clause = other.get_value(method)
            relation.set_value(method, clause.merge(other_clause))
          end
        end
Register or log in to add new notes.