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

5 lines
133 B
MySQL
Raw Normal View History

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
);