ClickHouse/tests/queries/0_stateless/01485_256_bit_multiply.sql

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

7 lines
209 B
MySQL
Raw Normal View History

2023-08-11 01:11:16 +00:00
-- Tags: no-random-settings, no-asan, no-msan, no-tsan, no-ubsan, no-debug
2020-09-29 17:52:34 +00:00
select count() from
(
select toInt128(number) * number x, toInt256(number) * number y from numbers_mt(100000000) where x != y
);