method
structurally_incompatible_values_for_or
rails latest stable - Class:
ActiveRecord::QueryMethods
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