ClickHouse/tests/queries/0_stateless/02051_symlinks_to_user_files.sh

33 lines
962 B
Bash
Raw Normal View History

2021-10-17 08:42:36 +00:00
#!/usr/bin/env bash
2021-10-17 19:09:17 +00:00
# Tags: no-fasttest, no-parallel
2021-10-17 08:42:36 +00:00
CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh
. "$CUR_DIR"/../shell_config.sh
# See 01658_read_file_to_string_column.sh
user_files_path=$(clickhouse-client --query "select _path,_file from file('nonexist.txt', 'CSV', 'val1 char')" 2>&1 | grep Exception | awk '{gsub("/nonexist.txt","",$9); print $9}')
2021-10-18 07:29:57 +00:00
FILE_PATH="${user_files_path}/file/"
mkdir -p ${FILE_PATH}
chmod 777 ${FILE_PATH}
2021-10-17 08:42:36 +00:00
2021-10-18 07:29:57 +00:00
FILE="test_symlink_${CLICKHOUSE_DATABASE}"
2021-10-17 08:42:36 +00:00
2021-10-18 07:29:57 +00:00
symlink_path=${FILE_PATH}/${FILE}
2021-10-17 08:42:36 +00:00
file_path=$CUR_DIR/${FILE}
2021-10-17 19:09:17 +00:00
touch ${file_path}
ln -s ${file_path} ${symlink_path}
2021-10-18 07:29:57 +00:00
chmod +w ${symlink_path}
2021-10-17 15:21:43 +00:00
2021-10-17 08:42:36 +00:00
function cleanup()
{
rm ${symlink_path} ${file_path}
}
trap cleanup EXIT
${CLICKHOUSE_CLIENT} --query="insert into table function file('${symlink_path}', 'Values', 'a String') select 'OK'";
${CLICKHOUSE_CLIENT} --query="select * from file('${symlink_path}', 'Values', 'a String')";