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

    data_dictionary.each_table do |record|
      yield record["NAME"]
    end

    nil
  end