You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avro 1.12.0 introduced a big-decimal which is a decimal without having the scale and precision information in the schema, allowing more flexibility, and so removing the need of AvroDecimal.
Currently, a BigDecimal without the AvroDecimal annotation indicating scale and precision fails.
Now, it would use by default the big-decimal logical type, while the decimal type is kept when the annotation is present.
The text was updated successfully, but these errors were encountered:
Avro 1.12.0 introduced a
big-decimal
which is adecimal
without having the scale and precision information in the schema, allowing more flexibility, and so removing the need ofAvroDecimal
.Currently, a
BigDecimal
without theAvroDecimal
annotation indicating scale and precision fails.Now, it would use by default the
big-decimal
logical type, while thedecimal
type is kept when the annotation is present.The text was updated successfully, but these errors were encountered: