mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
21 lines
456 B
Bash
21 lines
456 B
Bash
#!/usr/bin/env bash
|
|
|
|
function wait_for_mutation()
|
|
{
|
|
local table=$1
|
|
local mutation_id=$2
|
|
|
|
for i in {1..100}
|
|
do
|
|
sleep 0.1
|
|
if [[ $(${CLICKHOUSE_CLIENT} --query="SELECT min(is_done) FROM system.mutations WHERE table='$table' AND mutation_id='$mutation_id'") -eq 1 ]]; then
|
|
break
|
|
fi
|
|
|
|
if [[ $i -eq 100 ]]; then
|
|
echo "Timed out while waiting for mutation to execute!"
|
|
fi
|
|
|
|
done
|
|
}
|