method

structurally_incompatible_values_for_or

rails latest stable - Class: ActiveRecord::QueryMethods

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.0.0) is shown here.

structurally_incompatible_values_for_or(other)
private

No documentation available.

# 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