if (row.isNull(colIndex)) {
continue;
}
DataType dataType = definitions.getType(colIndex);
String columnNameText = definitions.getName(colIndex);
CqlColumnType columnType = typeMap.get(columnNameText.toLowerCase());
if (columnType == null) {
columnType = CqlColumnType.REGULAR;
LOG.debug("Column type not found for: {} - using regular", columnNameText);
}
CqlExtendedColumnName columnName = new CqlExtendedColumnName(columnType, CqlDataType.create(dataType),