mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
7 lines
209 B
SQL
7 lines
209 B
SQL
-- Tags: no-random-settings, no-asan, no-msan, no-tsan, no-ubsan, no-debug
|
|
|
|
select count() from
|
|
(
|
|
select toInt128(number) * number x, toInt256(number) * number y from numbers_mt(100000000) where x != y
|
|
);
|