2019-02-05 18:07:00 +00:00
#!/usr/bin/env bash
CURDIR = $( cd " $( dirname " ${ BASH_SOURCE [0] } " ) " && pwd )
2020-12-28 11:46:53 +00:00
# shellcheck source=../shell_config.sh
2020-08-01 00:51:12 +00:00
. " $CURDIR " /../shell_config.sh
2019-02-05 18:07:00 +00:00
2020-12-28 11:46:53 +00:00
# shellcheck source=./mergetree_mutations.lib
2020-08-01 00:52:41 +00:00
. " $CURDIR " /mergetree_mutations.lib
2019-02-05 18:07:00 +00:00
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= "DROP TABLE IF EXISTS kill_mutation"
2019-02-05 18:07:00 +00:00
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= "CREATE TABLE kill_mutation(d Date, x UInt32, s String) ENGINE MergeTree ORDER BY x PARTITION BY d"
2019-02-05 18:07:00 +00:00
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= "INSERT INTO kill_mutation VALUES ('2000-01-01', 1, 'a')"
${ CLICKHOUSE_CLIENT } --query= "INSERT INTO kill_mutation VALUES ('2001-01-01', 2, 'b')"
2019-02-05 18:07:00 +00:00
${ CLICKHOUSE_CLIENT } --query= "SELECT '*** Create and kill a single invalid mutation ***'"
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= "ALTER TABLE kill_mutation DELETE WHERE toUInt32(s) = 1 SETTINGS mutations_sync = 1" 2>/dev/null
2019-12-24 09:05:06 +00:00
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= " SELECT count() FROM system.mutations WHERE database = ' $CLICKHOUSE_DATABASE ' AND table = 'kill_mutation' and is_done = 0 "
2019-02-05 18:07:00 +00:00
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= " KILL MUTATION WHERE database = ' $CLICKHOUSE_DATABASE ' AND table = 'kill_mutation' "
2020-03-16 14:05:11 +00:00
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= " SELECT mutation_id FROM system.mutations WHERE database = ' $CLICKHOUSE_DATABASE ' AND table = 'kill_mutation' "
2019-02-05 18:07:00 +00:00
${ CLICKHOUSE_CLIENT } --query= "SELECT '*** Create and kill invalid mutation that blocks another mutation ***'"
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= "ALTER TABLE kill_mutation DELETE WHERE toUInt32(s) = 1"
${ CLICKHOUSE_CLIENT } --query= "ALTER TABLE kill_mutation DELETE WHERE x = 1 SETTINGS mutations_sync = 1" 2>& 1 | grep -o "happened during execution of mutations 'mutation_4.txt, mutation_5.txt'" | head -n 1
2019-12-24 09:05:06 +00:00
2020-08-06 09:50:23 +00:00
# but exception doesn't stop mutations, and we will still see them in system.mutations
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= " SELECT count() FROM system.mutations WHERE database = ' $CLICKHOUSE_DATABASE ' AND table = 'kill_mutation' AND mutation_id = 'mutation_4.txt' " # 1
2019-02-05 18:07:00 +00:00
2020-08-06 09:50:23 +00:00
# waiting test kill_mutation mutation_4.txt DELETE WHERE toUInt32(s) = 1
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= " KILL MUTATION WHERE database = ' $CLICKHOUSE_DATABASE ' AND table = 'kill_mutation' AND mutation_id = 'mutation_4.txt' "
2019-12-24 09:05:06 +00:00
2020-08-06 09:50:23 +00:00
# just to wait previous mutation to finish (and don't poll system.mutations), doesn't affect data
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= "ALTER TABLE kill_mutation DELETE WHERE x = 1 SETTINGS mutations_sync = 1"
2020-03-16 14:05:11 +00:00
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= "SELECT * FROM kill_mutation" # 2001-01-01 2 b
2020-08-06 09:50:23 +00:00
2020-03-11 15:00:14 +00:00
# must always be empty
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= " SELECT * FROM system.mutations WHERE table = 'kill_mutation' AND database = ' $CLICKHOUSE_DATABASE ' AND is_done = 0 "
2019-02-05 18:07:00 +00:00
2020-12-04 02:15:44 +00:00
${ CLICKHOUSE_CLIENT } --query= "DROP TABLE kill_mutation"