Có một vấn đề đã biết về nó trên Github.
Theo nhận xét này, bạn có thể muốn ghi đè structurally_incompatible_values_for_or
để khắc phục sự cố:
def structurally_incompatible_values_for_or(other)
Relation::SINGLE_VALUE_METHODS.reject { |m| send("#{m}_value") == other.send("#{m}_value") } +
(Relation::MULTI_VALUE_METHODS - [:eager_load, :references, :extending]).reject { |m| send("#{m}_values") == other.send("#{m}_values") } +
(Relation::CLAUSE_METHODS - [:having, :where]).reject { |m| send("#{m}_clause") == other.send("#{m}_clause") }
end
Ngoài ra, luôn có một tùy chọn để sử dụng SQL:
@items
.joins(:orders)
.where("orders.user_id = ? OR items.available = true", current_user.id)