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
{{ message }}
This repository was archived by the owner on Jan 22, 2019. It is now read-only.
If schema is created for Float or Double class (mapper.schemaFor(Float.class) or mapper.schemaFor(Double.class)) and used to write single floating point numbers
the resultung CSV is 42.33, instead of 42.33 so an additional column separator is added at the end of the line.
For all other primitive data types, this works correctly.
Additionally, if writer is created with ObjectWriter writer = mapper.writerFor(Float.class); without explicit schema use, this works correctly (no column separator is added).