# File lib/innodb/data_dictionary.rb, line 593
  def _make_column_description(type, record)
    {
      :type => type,
      :name => record["NAME"],
      :description => self.class.mtype_prtype_to_data_type(
        record["MTYPE"],
        record["PRTYPE"],
        record["LEN"],
        record["PREC"]
      )
    }
  end