ClickHouse/tests/queries/0_stateless/01168_mutations_isolation.sh
Alexander Tokmakov f330ac31c3 fix test
2021-12-16 00:49:06 +03:00

85 lines
4.0 KiB
Bash
Executable File

#!/usr/bin/env bash
# Tags: no-fasttest, no-replicated-database
# Looks like server does not listen https port in fasttest
# FIXME Replicated database executes ALTERs in separate context, so transaction info is lost
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh
. "$CURDIR"/../shell_config.sh
# shellcheck source=./transactions.lib
. "$CURDIR"/transactions.lib
$CLICKHOUSE_CLIENT -q "drop table if exists mt"
$CLICKHOUSE_CLIENT -q "create table mt (n int) engine=MergeTree order by tuple()"
$CLICKHOUSE_CLIENT -q "insert into mt values (1)"
tx 1 "begin transaction"
tx 2 "begin transaction"
tx 1 "insert into mt values (2)"
tx 2 "insert into mt values (3)"
tx 2 "alter table mt update n=n*10 where 1 settings mutations_sync=1"
tx 2 "select 1, n, _part from mt order by n"
tx 1 "select 2, n, _part from mt order by n"
tx 1 "alter table mt update n=n+1 where 1 settings mutations_sync=1" | grep -Eo "Serialization error" | uniq
tx 1 "commit" | grep -Eo "INVALID_TRANSACTION" | uniq
tx 2 "rollback"
tx 3 "begin transaction"
tx 3 "select 3, n, _part from mt order by n"
tx 4 "begin transaction"
tx 3 "insert into mt values (2)"
tx 4 "insert into mt values (3)"
tx 4 "alter table mt update n=n*2 where 1"
tx 3 "alter table mt update n=n+42 where 1"
tx 3 "insert into mt values (4)"
tx 4 "insert into mt values (5)"
tx 3 "commit" | grep -Eo "Serialization error" | uniq
tx 4 "commit"
tx 5 "begin transaction"
tx 5 "select 4, n, _part from mt order by n"
tx 6 "begin transaction"
tx 6 "alter table mt delete where n%2=1 settings mutations_sync=1"
tx 5 "select 5, n, _part from mt order by n"
tx 5 "alter table mt drop partition id 'all'" | grep -Eo "SERIALIZATION_ERROR" | uniq
tx 6 "select 6, n, _part from mt order by n"
tx 5 "rollback"
tx 6 "insert into mt values (8)"
tx 6 "alter table mt update n=n*10 where 1"
tx 6 "insert into mt values (40)"
tx 6 "commit"
tx 7 "begin transaction"
tx 7 "select 7, n, _part from mt order by n"
tx 8 "begin transaction"
tx 8 "alter table mt update n = 0 where 1"
$CLICKHOUSE_CLIENT -q "kill mutation where database=currentDatabase() and mutation_id='mutation_16.txt' format Null"
tx 7 "optimize table mt final"
tx 7 "select 8, n, _part from mt order by n"
tx 8 "commit" | grep -Eo "INVALID_TRANSACTION" | uniq
tx 8 "rollback"
tx 10 "begin transaction"
tx 10 "alter table mt update n = 0 where 1"
tx 7 "alter table mt update n=n+1 where 1"
tx 10 "commit" | grep -Eo "INVALID_TRANSACTION" | uniq
tx 10 "rollback"
tx 7 "commit"
tx 11 "begin transaction"
tx 11 "select 9, n, _part from mt order by n"
tx 12 "begin transaction"
tx 11 "alter table mt update n=n+1 where 1"
tx 12 "alter table mt update n=n+1 where 1"
tx 11 "commit" >/dev/null
tx 12 "commit" >/dev/null
tx 11 "begin transaction"
tx 11 "select 10, n, _part from mt order by n"
$CLICKHOUSE_CLIENT --database_atomic_wait_for_drop_and_detach_synchronously=0 -q "drop table mt"