mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
Fix flaky test 01622_defaults_for_url_engine
This commit is contained in:
parent
fcca3e3e56
commit
f9234f74aa
@ -7,8 +7,6 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|||||||
|
|
||||||
PORT="$(($RANDOM%63000+2001))"
|
PORT="$(($RANDOM%63000+2001))"
|
||||||
|
|
||||||
TEMP_FILE="${CLICKHOUSE_TMP}/01622_defaults_for_url_engine.tmp"
|
|
||||||
|
|
||||||
function thread1
|
function thread1
|
||||||
{
|
{
|
||||||
while true; do
|
while true; do
|
||||||
@ -19,7 +17,7 @@ function thread1
|
|||||||
function thread2
|
function thread2
|
||||||
{
|
{
|
||||||
while true; do
|
while true; do
|
||||||
$CLICKHOUSE_CLIENT --input_format_defaults_for_omitted_fields=1 -q "SELECT * FROM url('http://127.0.0.1:$1/', JSONEachRow, 'a int, b int default 7, c default a + b') format Values"
|
$CLICKHOUSE_CLIENT --input_format_defaults_for_omitted_fields=1 -q "SELECT * FROM url('http://127.0.0.1:$1/', JSONEachRow, 'a int, b int default 7, c default a + b') format Values" | grep -F '(1,7,8)' && break
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -27,11 +25,11 @@ function thread2
|
|||||||
export -f thread1;
|
export -f thread1;
|
||||||
export -f thread2;
|
export -f thread2;
|
||||||
|
|
||||||
TIMEOUT=5
|
TIMEOUT=60
|
||||||
|
|
||||||
timeout $TIMEOUT bash -c "thread1 $PORT" > /dev/null 2>&1 &
|
timeout $TIMEOUT bash -c "thread1 $PORT" > /dev/null 2>&1 &
|
||||||
timeout $TIMEOUT bash -c "thread2 $PORT" 2> /dev/null > $TEMP_FILE &
|
PID=$!
|
||||||
|
|
||||||
wait
|
bash -c "thread2 $PORT" 2> /dev/null | grep -q -F '(1,7,8)' && echo "Ok" && kill -9 $PID
|
||||||
|
|
||||||
grep -q '(1,7,8)' $TEMP_FILE && echo "Ok"
|
wait >/dev/null 2>&1
|
||||||
|
Loading…
Reference in New Issue
Block a user