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
clickhouse-server:24.3.12.75
CREATE TABLE IF NOT EXISTS test.t_flow_test
(
`timestamp` DateTime64(3, 'UTC'),
`src_ip` Array(UInt16),
`dst_ip` UInt16
)
ENGINE = MergeTree
PARTITION BY toYYYYMMDD(timestamp)
ORDER BY (timestamp);
Good day, @guosk123!
This is inconsistency issue. We might not fix it in the old JDBC implementation because a new one is around the corner.
New JDBC implementation will use short because we moved away from custom numeric data type as they are not portable. In most cases JDK provided types will be used.
Good day, @guosk123! This is inconsistency issue. We might not fix it in the old JDBC implementation because a new one is around the corner. New JDBC implementation will use short because we moved away from custom numeric data type as they are not portable. In most cases JDK provided types will be used.
New JDBC implementation will use short because we moved away from custom numeric data type as they are not portable. In most cases JDK provided types will be used.
@chernser if it's the expected behaviour, should we close as won't fix?
Describe the bug
Steps to reproduce
The text was updated successfully, but these errors were encountered: