# File lib/innodb/system.rb, line 75
  def add_table(table_name)
    space_file = "%s/%s.ibd" % [config[:datadir], table_name]
    if File.exist?(space_file)
      add_space_file(space_file)
    else
      add_space_orphan(table_name)
    end
  end