method

initialize_copy

rails latest stable - Class: Arel::Nodes::DeleteStatement
initialize_copy(other)
public

No documentation available.

# File activerecord/lib/arel/nodes/delete_statement.rb, line 20
      def initialize_copy(other)
        super
        @relation = @relation.clone if @relation
        @wheres = @wheres.clone if @wheres
      end