# File lib/dbd_mysql/Mysql.rb, line 412 def fill_array(rowdata) return nil if rowdata.nil? row = [] rowdata.each_with_index { |value, index| type = @column_info[index]['_type'] type_symbol = Database::TYPE_MAP[type] || :as_str row[index] = @coerce.coerce(type_symbol, value) } row end