mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
d056d7e516
* Revert "Reverted bad modification #2035" This reverts commit6d6eca5e23
. * spaces * fix * better * Revert "Disabled ill-formed test #2035" This reverts commitb28cef9871
. * debug * fix * fix * fix * fix * fix * fix * clean * Tests compile fix
19 lines
561 B
Bash
Executable File
19 lines
561 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
. $CURDIR/../shell_config.sh
|
|
|
|
# Not default server config needed
|
|
|
|
tcp_ssl_port=`${CLICKHOUSE_EXTRACT_CONFIG} -k tcp_ssl_port 2>/dev/null`
|
|
if [ -z ${tcp_ssl_port} ]; then
|
|
# Secure port disabled. Fake result
|
|
cat $CURDIR/00505_tcp_ssl.reference
|
|
else
|
|
# Auto port detect
|
|
${CLICKHOUSE_CLIENT} --ssl -q "SELECT 1";
|
|
${CLICKHOUSE_CLIENT} --ssl --port=${CLICKHOUSE_PORT_TCP_SSL} -q "SELECT 2";
|
|
|
|
${CLICKHOUSE_CURL} -sS --insecure ${CLICKHOUSE_URL_HTTPS}?query=SELECT%203
|
|
fi
|