Merge pull request #50290 from azat/tests/fix-02767_into_outfile_extensions_msan

Fix 02767_into_outfile_extensions_msan under analyzer
This commit is contained in:
Alexey Milovidov 2023-05-29 02:28:33 +03:00 committed by GitHub
commit 9b7260772a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,6 @@ CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
out="explain1.$CLICKHOUSE_TEST_UNIQUE_NAME.out"
# only EXPLAIN triggers the problem under MSan
$CLICKHOUSE_CLIENT -q "explain select * from numbers(1) into outfile '$out'"
$CLICKHOUSE_CLIENT --allow_experimental_analyzer=0 -q "explain select * from numbers(1) into outfile '$out'"
cat "$out"
rm -f "$out"