fix style-check

This commit is contained in:
Anton Popov 2022-05-04 17:17:05 +00:00
parent ecc8476847
commit d41b78e7e8

View File

@ -6,7 +6,7 @@ CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
. "$CUR_DIR"/../shell_config.sh
user_files_path=$($CLICKHOUSE_CLIENT --query "select _path,_file from file('nonexist.txt', 'CSV', 'val1 char')" 2>&1 | grep -E '^Code: 107.*FILE_DOESNT_EXIST' | head -1 | awk '{gsub("/nonexist.txt","",$9); print $9}')
for f in "$user_files_path/01825_file_*.json"; do
for f in "$user_files_path"/01825_file_*.json; do
[ -e $f ] && rm $f
done