ClickHouse/tests/queries/0_stateless/03034_normalized_ast.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
188 B
MySQL
Raw Normal View History

2024-04-02 15:47:48 +00:00
-- https://github.com/ClickHouse/ClickHouse/issues/49472
SELECT
concat(database, table) AS name,
count()
FROM clusterAllReplicas(default, system.tables)
GROUP BY name
FORMAT Null;