Skip to content

Commit

Permalink
Merge pull request #6871 from dolthub/tim/unskip-bats
Browse files Browse the repository at this point in the history
Remove skip on now passing test for multi-db joins on tables with the same name
  • Loading branch information
timsehn authored Oct 25, 2023
2 parents 4dbf6c4 + 0979fff commit ce375e4
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 ce375e4

Please sign in to comment.