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
When reading from a table with column type SimpleAggregateFunction(max, DateTime64(3, 'UTC')) the following code tries to split max, DateTime64(3, 'UTC') by ,. Which results in an array of length 3. With parts max, DateTime64(3, UTC').
When reading from a table with column type
SimpleAggregateFunction(max, DateTime64(3, 'UTC'))
the following code tries to splitmax, DateTime64(3, 'UTC')
by,
. Which results in an array of length 3. With partsmax
,DateTime64(3
,UTC')
.clickhouse-go/lib/column/column.go
Lines 189 to 200 in 1ae00d3
This function returns an error if the length of the splitted array is not equal to 2.
Please check.
Thanks.
The text was updated successfully, but these errors were encountered: