mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
33 lines
965 B
Bash
Executable File
33 lines
965 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tags: no-fasttest, no-parallel
|
|
|
|
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}')
|
|
|
|
FILE_PATH="${user_files_path}/file/"
|
|
mkdir -p ${FILE_PATH}
|
|
chmod 777 ${FILE_PATH}
|
|
|
|
FILE="test_symlink_${CLICKHOUSE_DATABASE}"
|
|
|
|
symlink_path=${FILE_PATH}/${FILE}
|
|
file_path=$CUR_DIR/${FILE}
|
|
|
|
touch ${file_path}
|
|
ln -s ${file_path} ${symlink_path}
|
|
chmod ugo+w ${symlink_path}
|
|
|
|
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')";
|
|
|