mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-20 05:05:38 +00:00
12 lines
363 B
Bash
Executable File
12 lines
363 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CUR_DIR"/../shell_config.sh
|
|
|
|
out="explain1.$CLICKHOUSE_TEST_UNIQUE_NAME.out"
|
|
# only EXPLAIN triggers the problem under MSan
|
|
$CLICKHOUSE_CLIENT --enable_analyzer=0 -q "explain select * from numbers(1) into outfile '$out'"
|
|
cat "$out"
|
|
rm -f "$out"
|