mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
30 lines
1.1 KiB
Bash
Executable File
30 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Description of test result:
|
|
# Test the correctness of the partition pruning
|
|
#
|
|
# Script executes queries from a file 01508_partition_pruning_long.queries (1 line = 1 query)
|
|
# Queries are started with 'select' (but NOT with 'SELECT') are executed with log_level=debug
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
|
|
queries="${CURDIR}/01508_partition_pruning_long.queries"
|
|
while IFS= read -r sql
|
|
do
|
|
[ -z "$sql" ] && continue
|
|
if [[ "$sql" == select* ]] ;
|
|
then
|
|
echo "$sql"
|
|
${CLICKHOUSE_CLIENT} --query "$sql"
|
|
CLICKHOUSE_CLIENT=$(echo ${CLICKHOUSE_CLIENT} | sed 's/'"--send_logs_level=${CLICKHOUSE_CLIENT_SERVER_LOGS_LEVEL}"'/--send_logs_level=debug/g')
|
|
${CLICKHOUSE_CLIENT} --query "$sql" 2>&1 | grep -oh "Selected .* parts by partition key, *. parts by primary key, .* marks by primary key, .* marks to read from .* ranges.*$"
|
|
CLICKHOUSE_CLIENT=$(echo ${CLICKHOUSE_CLIENT} | sed 's/--send_logs_level=debug/'"--send_logs_level=${CLICKHOUSE_CLIENT_SERVER_LOGS_LEVEL}"'/g')
|
|
echo ""
|
|
else
|
|
${CLICKHOUSE_CLIENT} --query "$sql"
|
|
fi
|
|
done < "$queries"
|