Is any difference between the the two following approaches of obtaining a KTable?
Option 1:
var kstream = streamsBuilder.stream(topicName, Consumed.with(...));
var mappedKTable = kstream.toTable(...);
Option 2:
var nativeKTable = streamsBuilder.toTable(topicName, Consumed.with(...));