mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added test [#CLICKHOUSE-3888]
This commit is contained in:
parent
c9b612de48
commit
f798b29111
@ -0,0 +1,60 @@
|
||||
1
|
||||
0
|
||||
1
|
||||
0
|
||||
1
|
||||
0
|
||||
1
|
||||
1
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
0
|
||||
0
|
||||
1
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
0
|
||||
1
|
||||
1
|
||||
90
|
||||
1
|
||||
1
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
0
|
||||
0
|
||||
1
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
0
|
||||
1
|
||||
1
|
||||
90
|
25
dbms/tests/queries/0_stateless/00697_in_subquery_remote.sql
Normal file
25
dbms/tests/queries/0_stateless/00697_in_subquery_remote.sql
Normal file
@ -0,0 +1,25 @@
|
||||
SELECT 0 IN 0;
|
||||
SELECT 0 IN 1;
|
||||
SELECT 0 IN (SELECT 0);
|
||||
SELECT 0 IN (SELECT 1);
|
||||
|
||||
SELECT dummy IN (SELECT 0) FROM remote('127.0.0.1', system.one);
|
||||
SELECT dummy IN (SELECT 1) FROM remote('127.0.0.1', system.one);
|
||||
|
||||
SELECT dummy IN (SELECT 0) FROM remote('127.0.0.{1,2}', system.one);
|
||||
SELECT dummy IN (SELECT 1) FROM remote('127.0.0.{1,2}', system.one);
|
||||
|
||||
SELECT number IN (SELECT toUInt64(arrayJoin([1, 8]))) FROM remote('127.0.0.{1,2}', numbers(10));
|
||||
|
||||
SELECT arrayExists(x -> (x IN (SELECT 1)), [1]) FROM remote('127.0.0.{1,2}', system.one);
|
||||
SELECT sumIf(number, arrayExists(x -> (x IN (SELECT 1)), [1])) FROM remote('127.0.0.{1,2}', numbers(10));
|
||||
|
||||
SET prefer_localhost_replica = 0;
|
||||
|
||||
SELECT dummy IN (SELECT 0) FROM remote('127.0.0.{1,2}', system.one);
|
||||
SELECT dummy IN (SELECT 1) FROM remote('127.0.0.{1,2}', system.one);
|
||||
|
||||
SELECT number IN (SELECT toUInt64(arrayJoin([1, 8]))) FROM remote('127.0.0.{1,2}', numbers(10));
|
||||
|
||||
SELECT arrayExists(x -> (x IN (SELECT 1)), [1]) FROM remote('127.0.0.{1,2}', system.one);
|
||||
SELECT sumIf(number, arrayExists(x -> (x IN (SELECT 1)), [1])) FROM remote('127.0.0.{1,2}', numbers(10));
|
Loading…
Reference in New Issue
Block a user