1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/active_relation/relations/update.rb

25 lines
No EOL
677 B
Ruby

module ActiveRelation
class Update < Compound
attr_reader :assignments
def initialize(relation, assignments)
@relation, @assignments = relation, assignments
end
def to_sql(strategy = nil)
[
"UPDATE #{table_sql} SET",
assignments.inject("") do |assignments, (attribute, value)|
assignments << " #{attribute.to_sql} = #{value.to_sql}"
end,
("WHERE #{selects.collect(&:to_sql).join('\n\tAND ')}" unless selects.blank?)
].join("\n")
end
def ==(other)
self.class == other.class and
relation == other.relation and
assignments == other.assignments
end
end
end