class Arel::Nodes::DeleteStatement

Attributes

limit[RW]

Public Instance Methods

initialize_copy(other) click to toggle source
# File lib/arel/nodes/delete_statement.rb, line 15
def initialize_copy other
  super
  @right = @right.clone
end

Public Class Methods

new(relation = nil, wheres = []) click to toggle source
# File lib/arel/nodes/delete_statement.rb, line 11
def initialize relation = nil, wheres = []
  super
end