PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Relazione passata a #o deve essere strutturalmente compatibile. Valori incompatibili:[:riferimenti]

C'è un problema noto su Github.

Secondo questo commento potresti voler sovrascrivere structurally_incompatible_values_for_or per superare il problema:

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

Inoltre c'è sempre un'opzione per usare SQL:

@items
  .joins(:orders)
  .where("orders.user_id = ? OR items.available = true", current_user.id)