mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
20 lines
379 B
Bash
Executable File
20 lines
379 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
set -e
|
|
|
|
format="$CLICKHOUSE_FORMAT -n"
|
|
|
|
$format <<EOF
|
|
SELECT a, b AS x FROM table AS t
|
|
JOIN table2 AS t2 ON (t.id = t2.t_id)
|
|
WHERE 1 = 1
|
|
;
|
|
SELECT a, b AS x,
|
|
x == 0 ? a : b
|
|
FROM table2 AS t WHERE t.id != 0
|
|
EOF
|