# File lib/innodb/system.rb, line 125
  def each_orphan
    unless block_given?
      return enum_for(:each_orphan)
    end

    orphans.each do |space_name|
      yield space_name
    end

    nil
  end