# File lib/innodb/system.rb, line 99
  def space_by_table_name(table_name)
    unless table_record = data_dictionary.table_by_name(table_name)
      raise "Table #{table_name} not found"
    end

    if table_record["SPACE"] == 0
      return nil
    end

    space(table_record["SPACE"])
  end