Is there a way to read bytesArray via the AvroInputStream.binary
api
and somehow specify the writer version ?
val in = new ByteArrayInputStream(bytesFromFile)
val input = AvroInputStream.binary[newClass](in)// old ?
val result = input.iterator.toSeq
in other words is avro4s support schema evolution with binary records ?