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.

10 lines
269 B
MySQL
Raw Normal View History

2024-04-02 15:47:48 +00:00
-- https://github.com/ClickHouse/ClickHouse/issues/49472
SET allow_experimental_analyzer=1;
2024-04-02 15:47:48 +00:00
SELECT
concat(database, table) AS name,
count()
2024-04-02 19:24:13 +00:00
FROM clusterAllReplicas(test_shard_localhost, system.tables)
2024-04-02 18:03:56 +00:00
WHERE database=currentDatabase()
2024-04-02 15:47:48 +00:00
GROUP BY name
FORMAT Null;