mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
10 lines
257 B
SQL
10 lines
257 B
SQL
-- https://github.com/ClickHouse/ClickHouse/issues/49472
|
|
SET enable_analyzer=1;
|
|
SELECT
|
|
concat(database, table) AS name,
|
|
count()
|
|
FROM clusterAllReplicas(test_shard_localhost, system.tables)
|
|
WHERE database=currentDatabase()
|
|
GROUP BY name
|
|
FORMAT Null;
|