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
drop table if exists test.t64_bug;
CREATE TABLE test.t64_bug (
epoch UInt64,
_time_dec Float64
) Engine = MergeTree
ORDER BY (epoch)
;
alter table test.t64_bug modify column epoch DEFAULT CAST(floor(_time_dec), 'UInt64') * 1000000000 CODEC(T64,LZ4);
insert into test.t64_bug(_time_dec) values(1577351080);
Received exception from server (version 19.18.1):
Code: 270. DB::Exception: Received from localhost:9000, ::1. DB::Exception: Connot compress with T64.
P.S. Also note that error message has a spelling error: 'connot'
The text was updated successfully, but these errors were encountered:
How to reproduce
P.S. Also note that error message has a spelling error: 'connot'
The text was updated successfully, but these errors were encountered: