Details
Description
The Decimal Conversion from/to Bytebuffer is using the methods that consider the current position, e.g. remaining().
At first sight that looks like a good idea. But actually it creates all sorts of problems.
For example this code fails with "Zero Length BigInteger":
BigDecimal d = BigDecimal.valueOf(3.1415); BigDecimal d = BigDecimal.valueOf(3.1415); Decimal decimaltype = LogicalTypes.decimal(7, 4); ByteBuffer buffer = DECIMAL_CONVERTER.toBytes(d, null, decimaltype); System.out.println(DECIMAL_CONVERTER.fromBytes(buffer, null, decimaltype).toString()); BigDecimal n = DECIMAL_CONVERTER.fromBytes(buffer, null, decimaltype); System.out.println(n.toString());
Reason is obvious. The first call to fromBytes() moves the position from 0 to the last byte. The second invocation reads from the last position, hence zero records.
There are other situations this might cause issues, e.g. a user might create the ByteBuffer via other means and it is normal that the position is after the last byte. Then the serialization would not work either. And many other.
As the ByteBuffer is used to wrap a single BigDecimal, I would suggest to remove all position-aware/setting methods and read/write from position zero.
Attachments
Issue Links
- relates to
-
AVRO-2636 GenericData defaultValueCache caches mutable ByteBuffers
- Open
- links to