use of io.confluent.ksql.serde.voids.KsqlVoidSerde in project ksql by confluentinc.
the class KafkaSerdeFactory method createSerde.
static Serde<List<?>> createSerde(final PersistenceSchema schema) {
final List<SimpleColumn> columns = schema.columns();
if (columns.isEmpty()) {
// No columns:
return new KsqlVoidSerde<>();
}
if (columns.size() != 1) {
throw new KsqlException("The '" + FormatFactory.KAFKA.name() + "' format only supports a single field. Got: " + columns);
}
final SimpleColumn singleColumn = columns.get(0);
final Class<?> javaType = SchemaConverters.sqlToJavaConverter().toJavaType(singleColumn.type());
return createSerde(singleColumn, javaType);
}
Aggregations