As part of some performance testing I started doing (here: http://github.com/robey/avrotest), I needed to build a list/array of structs from inside java. I ended up writing this:
results.edges = new GenericData.Array[Edge](2,
results.getSchema().getField("edges").schema())
which is obviously the wrong way to do it. :) It's just the only way I could
figure out from scanning the java source.
What's the right way to do that?
robey
