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

35 lines
640 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-02-24 01:45:50 -05:00
2018-02-24 02:41:47 -05:00
module Arel # :nodoc: all
2010-08-14 21:29:32 -04:00
class UpdateManager < Arel::TreeManager
include TreeManager::StatementMethods
def initialize
2010-08-14 21:29:32 -04:00
super
2010-11-05 17:09:09 -04:00
@ast = Nodes::UpdateStatement.new
2010-12-07 13:46:30 -05:00
@ctx = @ast
2010-08-14 21:29:32 -04:00
end
###
# UPDATE +table+
2018-02-24 01:45:50 -05:00
def table(table)
2010-11-05 17:09:09 -04:00
@ast.relation = table
2010-08-14 21:29:32 -04:00
self
end
2018-02-24 01:45:50 -05:00
def set(values)
2010-08-18 12:52:16 -04:00
if String === values
2010-11-05 17:09:09 -04:00
@ast.values = [values]
2010-08-18 12:52:16 -04:00
else
2018-02-24 01:45:50 -05:00
@ast.values = values.map { |column, value|
Nodes::Assignment.new(
2010-08-18 12:52:16 -04:00
Nodes::UnqualifiedColumn.new(column),
value
)
}
end
2010-08-14 22:12:52 -04:00
self
end
2010-08-14 21:29:32 -04:00
end
end