From 0979ffff47f57dff4c37f94b4c22171876a9c1dc Mon Sep 17 00:00:00 2001 From: Tim Sehn Date: Tue, 24 Oct 2023 16:03:22 -0700 Subject: [PATCH] Unskipped a bats test I added for a join across multiple databases on tables of the same name that is now fixed. --- integration-tests/bats/sql-multi-db.bats | 1 - 1 file changed, 1 deletion(-) diff --git a/integration-tests/bats/sql-multi-db.bats b/integration-tests/bats/sql-multi-db.bats index 33ce6cfd87..d3fcb66cfa 100644 --- a/integration-tests/bats/sql-multi-db.bats +++ b/integration-tests/bats/sql-multi-db.bats @@ -92,7 +92,6 @@ seed_repos_with_tables_with_use_statements() { CREATE TABLE r2_t1 (pk BIGINT, c1 BIGINT, PRIMARY KEY(pk)); INSERT INTO r2_t1 (pk, c1) values (2,200),(3,300),(4,400);" run dolt --data-dir ./ sql -q "select * from repo1.r2_t1 join repo2.r2_t1 on repo1.r2_t1.pk=repo2.r2_t1.pk" - skip "Fails on Not unique table/alias" [ "$status" -eq 0 ] [[ ! $output =~ "Not unique table/alias" ]] || false }