Converting BigDecial to ByteBuffer

2016-01-19 Thread David Newberger
there anything special I need to do to ensure it is compatible with avro and other tools like Impala? Also is this the correct form to using currency values? Cheers, David Newberger

RE: add new attributes into avro schema

2015-12-17 Thread David Newberger
three lines: .intType() .intBuilder().endInt() .intBuilder().prop("customProp", "val").endInt() Every primitive type has a shortcut to create the trivial type, and a builder when custom properties are required. The first line above is a shortcut for the second, analo