Missing refs

This commit is contained in:
Raúl Marín 2023-03-13 12:01:18 +01:00
parent 2781c9133e
commit 5ef4a2bb78
3 changed files with 2 additions and 3 deletions

View File

@ -85,7 +85,7 @@ SELECT a._shard_num, a.key, b.host_name, b.host_address IN ('::1', '127.0.0.1'),
FROM dist_1 a
JOIN system.clusters b
ON a._shard_num = b.shard_num
WHERE b.cluster = 'test_cluster_two_shards_localhost'; -- { serverError 403 }
WHERE b.cluster = 'test_cluster_two_shards_localhost'; -- { serverError 47, 403 }
SELECT 'dist_3';
dist_3
SELECT * FROM dist_3;

View File

@ -2,7 +2,6 @@
-- make the order static
SET max_threads = 1;
SET allow_experimental_analyzer = 1;
DROP TABLE IF EXISTS mem1;
DROP TABLE IF EXISTS mem2;

View File

@ -15,4 +15,4 @@ SELECT _shard_num AS shard_num, sum(1) as rows FROM remote('127.{1,2}', system,
SELECT a._shard_num AS shard_num, sum(1) as rows FROM remote('127.{1,2}', system, one) a GROUP BY shard_num;
2 1
1 1
SELECT _shard_num FROM remote('127.1', system.one) AS a INNER JOIN (SELECT _shard_num FROM system.one) AS b USING (dummy); -- { serverError UNSUPPORTED_METHOD }
SELECT _shard_num FROM remote('127.1', system.one) AS a INNER JOIN (SELECT _shard_num FROM system.one) AS b USING (dummy); -- { serverError UNSUPPORTED_METHOD, UNKNOWN_IDENTIFIER }