method

structurally_incompatible_values_for_or

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::QueryMethods
structurally_incompatible_values_for_or(other) 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/query_methods.rb, line 1335
      def structurally_incompatible_values_for_or(other)
        values = other.values
        STRUCTURAL_OR_METHODS.reject do |method|
          default = DEFAULT_VALUES[method]
          @values.fetch(method, default) == values.fetch(method, default)
        end
      end
Register or log in to add new notes.