From 4da866c03b80d104fcde5e2e940b331ba22f558b Mon Sep 17 00:00:00 2001 From: elianddb Date: Fri, 26 Sep 2025 11:43:56 -0700 Subject: [PATCH] amend go.mod/sum # Conflicts: # go/go.mod # go/go.sum --- integration-tests/bats/docker-entrypoint.bats | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integration-tests/bats/docker-entrypoint.bats b/integration-tests/bats/docker-entrypoint.bats index 08409bdb59..11f940a2ca 100644 --- a/integration-tests/bats/docker-entrypoint.bats +++ b/integration-tests/bats/docker-entrypoint.bats @@ -161,8 +161,10 @@ wait_for_log() { [ $status -eq 0 ] echo "$output" | grep -Fx "$kw_db" >/dev/null + # DBeaver checks tables without `` escaping run docker exec "$cname" dolt sql --result-format csv -q "SHOW FULL TABLES FROM versioning;" - + [ $status -eq 0 ] + [[ "$output" =~ "Tables_in_versioning,Table_type" ]] || false # Can use the database for operations run docker exec "$cname" dolt sql -q "USE \`$kw_db\`; CREATE TABLE test_table (id INT);" @@ -553,8 +555,6 @@ EOF [[ "$output" =~ "Bash script executed" ]] || false [[ "$output" =~ "Compressed SQL executed" ]] || false - docker logs "$cname" - rm -rf "$temp_dir" }