ClickHouse/tests/queries/0_stateless/00646_weird_mmx.sql
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

10 lines
401 B
SQL

DROP TABLE IF EXISTS weird_mmx;
CREATE TABLE weird_mmx (x Array(UInt64)) ENGINE = TinyLog;
-- this triggers overlapping matches in LZ4 decompression routine; 915 is the minimum number
-- see comment in LZ4_decompression_faster.cpp about usage of MMX registers
INSERT INTO weird_mmx SELECT range(number % 10) FROM system.numbers LIMIT 915;
SELECT sum(length(*)) FROM weird_mmx;
DROP TABLE weird_mmx;