ClickHouse/dbms/tests/queries/0_stateless/00354_host_command_line_option.sh

9 lines
261 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2016-07-28 02:20:04 +00:00
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
. $CURDIR/../shell_config.sh
$CLICKHOUSE_CLIENT --host=localhost --query="SELECT 1";
$CLICKHOUSE_CLIENT --host localhost --query "SELECT 1";
$CLICKHOUSE_CLIENT -hlocalhost -q"SELECT 1";