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
It should be possible to get number values in different convertible types. Today it is required for application to know datatype of a column.
For example, binary format reader:
java.lang.ClassCastException: class java.lang.Short cannot be cast to class java.lang.Integer (java.lang.Short and java.lang.Integer are in module java.base of loader 'bootstrap')
at com.clickhouse.client.api.data_formats.internal.AbstractBinaryFormatReader.getInteger(AbstractBinaryFormatReader.java:484)
Expected behavior
Convertion between number types should be done automatically where applicable without data truncation.
The text was updated successfully, but these errors were encountered:
Describe the bug
It should be possible to get number values in different convertible types. Today it is required for application to know datatype of a column.
For example, binary format reader:
Expected behavior
Convertion between number types should be done automatically where applicable without data truncation.
The text was updated successfully, but these errors were encountered: