ClickHouse/tests/queries/0_stateless/02812_large_varints.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
363 B
MySQL
Raw Normal View History

-- 64-bit integers with MSB set (i.e. values > (1ULL<<63) - 1) could for historical/compat reasons not be serialized as var-ints (issue #51486).
-- These two queries internally produce such big values, run them to be sure no bad things happen.
SELECT topKWeightedState(65535)(now(), -2) FORMAT Null;
SELECT number FROM numbers(toUInt64(-1)) limit 10 Format Null;