ClickHouse/tests/queries/0_stateless/01532_having_with_totals.sql
Azat Khuzhin 8b438bcd3c Change formatting of subqueries (make it more human friendly)
Fix trailing whitespaces in FROM/IN clause with subqueries in multiline
mode, and also changes the output of the queries slightly in a more
human friendly way.

Before:

    $ clickhouse-format <<<'select * from system.one, (select * from system.one)'
    SELECT *
    FROM system.one
    ,
    (
        SELECT *
        FROM system.one
    )

After:

    $ clickhouse-format <<<'select * from system.one, (select * from system.one)'
    SELECT *
    FROM system.one,
    (
        SELECT *
        FROM system.one
    )

v2: Fix subqueries formatting in a different way
v3: Adjust *.reference in tests
v4: Fix modernize-loop-convert in ASTTablesInSelectQuery
2021-05-20 21:04:12 +03:00

45 lines
637 B
SQL

drop table if exists local_t;
create table local_t engine Log as select 1 a;
SELECT '127.0.0.{1,2}';
SELECT *
FROM
(
SELECT a
FROM remote('127.0.0.{1,2}', currentDatabase(), local_t)
GROUP BY a
WITH TOTALS
)
WHERE a IN
(
SELECT 1
);
SELECT '127.0.0.1';
SELECT *
FROM
(
SELECT a
FROM remote('127.0.0.1', currentDatabase(), local_t)
GROUP BY a
WITH TOTALS
)
WHERE a IN
(
SELECT 1
);
SELECT 'with explicit having';
SELECT
a,
count()
FROM remote('127.0.0.{1,2}', currentDatabase(), local_t)
GROUP BY a
WITH TOTALS
HAVING a IN
(
SELECT 1
);
drop table if exists local_t;