1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

MCOL-6038 combine regression and prepare regression

This commit is contained in:
aleksei.bukhalov
2025-06-23 17:20:51 +02:00
committed by Leonid Fedorov
parent c9cf1a5944
commit 0112e7b13c
5 changed files with 109 additions and 126 deletions

View File

@ -531,7 +531,7 @@ function execInnerDocker() {
if [[ $dockerCommandExitCode -ne 0 ]]; then
error "Command \"$@\" failed in container \"$container_name\""
exit $dockerCommandExitCode
return $dockerCommandExitCode
fi
}
@ -544,7 +544,7 @@ function execInnerDockerNoTTY() {
if [[ $dockerCommandExitCode -ne 0 ]]; then
error "Command \"$@\" failed in container \"$container_name\""
exit $dockerCommandExitCode
return $dockerCommandExitCode
fi
}