ClickHouse/tests/queries/0_stateless/01485_256_bit_multiply.sql
Alexey Milovidov c2238c5723 Fix tests
2024-07-24 10:45:33 +02:00

9 lines
241 B
SQL

-- Tags: no-random-settings, no-asan, no-msan, no-tsan, no-ubsan, no-debug
SET max_rows_to_read = '100M';
select count() from
(
select toInt128(number) * number x, toInt256(number) * number y from numbers_mt(100000000) where x != y
);