# File lib/taps/operation.rb, line 325
  def tables
    h = {}
    remote_tables_info.each do |table_name, count|
      next if completed_tables.include?(table_name.to_s)
      h[table_name.to_s] = count
    end
    h
  end