mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
11 lines
293 B
Bash
11 lines
293 B
Bash
|
#!/usr/bin/env bash
|
||
|
# Tags: no-fasttest, no-parallel, no-replicated-database
|
||
|
|
||
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||
|
# shellcheck source=../shell_config.sh
|
||
|
. "$CURDIR"/../shell_config.sh
|
||
|
|
||
|
$CLICKHOUSE_LOCAL --multiquery -q "
|
||
|
SET param_x=1;
|
||
|
SELECT {x:UInt64}, {x:String};"
|