# File lib/taps/operation.rb, line 245
  def run
    catch_errors do
      unless resuming?
        pull_schema if !skip_schema?
        pull_indexes if indexes_first? && !skip_schema?
      end
      setup_signal_trap
      pull_partial_data if resuming?
      pull_data
      pull_indexes if !indexes_first? && !skip_schema?
      pull_reset_sequences
    end
  end