1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-09-11 08:50:45 +03:00

Run basic mtr without extern

This commit is contained in:
Leonid Fedorov
2025-07-31 12:16:13 +00:00
parent ebdf68971b
commit cc9712edcd
2 changed files with 39 additions and 17 deletions

View File

@@ -536,7 +536,7 @@ function execInnerDocker() {
local container_name=$1
shift 1 # Remove first arg (container_name)
docker exec -t "$container_name" bash -c "$@" | tr -d '[:space:]'
docker exec -t "$container_name" bash -c "$@"
local dockerCommandExitCode=$?
if [[ $dockerCommandExitCode -ne 0 ]]; then
@@ -545,6 +545,10 @@ function execInnerDocker() {
fi
}
function execInnerDockerStripped() {
execInnerDocker "$@" | tr -d '[:space:]'
}
function execInnerDockerNoTTY() {
local container_name=$1
shift 1