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" }