# File lib/innodb/data_dictionary.rb, line 333
  def each_table
    unless block_given?
      return enum_for(:each_table)
    end

    each_record_from_data_dictionary_index(:SYS_TABLES, :PRIMARY) do |record|
      yield record.fields
    end

    nil
  end