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
ignacio chiazzo 4acb6660e2 Use nested queries when doing UPDATE in myslq and GROUP_BY and HAVING clauses are present.
MySQL does not support GROUP_BY and HAVING on UPDATE, we need to use a Subquery.
2021-11-01 13:27:44 -04:00

48 lines
974 B
Ruby

# frozen_string_literal: true
module Arel # :nodoc: all
class UpdateManager < Arel::TreeManager
include TreeManager::StatementMethods
def initialize(table = nil)
@ast = Nodes::UpdateStatement.new(table)
end
###
# UPDATE +table+
def table(table)
@ast.relation = table
self
end
def set(values)
if String === values
@ast.values = [values]
else
@ast.values = values.map { |column, value|
Nodes::Assignment.new(
Nodes::UnqualifiedColumn.new(column),
value
)
}
end
self
end
def group(columns)
columns.each do |column|
column = Nodes::SqlLiteral.new(column) if String === column
column = Nodes::SqlLiteral.new(column.to_s) if Symbol === column
@ast.groups.push Nodes::Group.new column
end
self
end
def having(expr)
@ast.havings << expr
self
end
end
end