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
In ClientV1, the created table would have Nullable(Float64) for the timestamp column. ClientV2 seems to ignore the inference hints (and the "input_format_try_infer_integers=0" setting), as the column is Nullable(Int64) instead:
TableSchema{tableName='tmp_csv_0be155a3_920d_4496_87a7_ee2facee2efc', databaseName='nominal', columns=[timestamp Nullable(Int64), a Nullable(Float64), b Nullable(String)], metadata={a={type=Nullable(Float64)}, b={type=Nullable(String)}, timestamp={type=Nullable(Int64)}}, colIndex={a=1, b=2, timestamp=0}, hasDefaults=false}
The text was updated successfully, but these errors were encountered:
Describe your feedback
We run the following query through the clickhouse java client:
With the following QuerySettings:
In ClientV1, the created table would have
Nullable(Float64)
for thetimestamp
column. ClientV2 seems to ignore the inference hints (and the "input_format_try_infer_integers=0" setting), as the column isNullable(Int64)
instead:The text was updated successfully, but these errors were encountered: