2017-02-13 13:58:58 -05:00
|
|
|
# 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-18 14:32:44 -04:00
|
|
|
class DeleteManager < Arel::TreeManager
|
2018-09-30 05:30:47 -04:00
|
|
|
include TreeManager::StatementMethods
|
|
|
|
|
2021-03-01 06:47:23 -05:00
|
|
|
def initialize(table = nil)
|
2021-03-04 12:37:54 -05:00
|
|
|
@ast = Nodes::DeleteStatement.new(table)
|
2010-08-18 14:32:44 -04:00
|
|
|
end
|
|
|
|
|
2018-02-24 01:45:50 -05:00
|
|
|
def from(relation)
|
2010-11-05 17:09:09 -04:00
|
|
|
@ast.relation = relation
|
2010-08-18 14:32:44 -04:00
|
|
|
self
|
|
|
|
end
|
2021-11-01 20:11:51 -04:00
|
|
|
|
|
|
|
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
|
2010-08-18 14:32:44 -04:00
|
|
|
end
|
|
|
|
end
|