https://s3.amazonaws.com/clickhouse-test-reports/json.html?PR=91581&sha=1f4aff8a1d8f0c0106ac8a2b3d5650663aaee399&name_0=PR&name_1=BuzzHouse+%28arm_asan%29
How to reproduce:
DROP TABLE IF EXISTS test;
CREATE TABLE test (c String) ENGINE = Log;
INSERT INTO TABLE test SELECT randomString(10) from numbers(1000);
INSERT INTO TABLE test SELECT randomString(10) from numbers(1000);
SELECT * FROM test ORDER BY c, c.size FORMAT Null;
DROP TABLE test;