Skip to content

Commit

Permalink
Unskipped a bats test I added for a join across multiple databases on…
Browse files Browse the repository at this point in the history
… tables of the same name that is now fixed.
  • Loading branch information
timsehn committed Oct 24, 2023
1 parent 17937a9 commit 0979fff
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion integration-tests/bats/sql-multi-db.bats
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 0979fff

Please sign in to comment.