# File lib/taps/operation.rb, line 404
  def run
    catch_errors do
      unless resuming?
        push_schema if !skip_schema?
        push_indexes if indexes_first? && !skip_schema?
      end
      setup_signal_trap
      push_partial_data if resuming?
      push_data
      push_indexes if !indexes_first? && !skip_schema?
      push_reset_sequences
    end
  end