diff --git a/testing/go/foreign_keys_test.go b/testing/go/foreign_keys_test.go index 510abaaa95..db60f7c407 100755 --- a/testing/go/foreign_keys_test.go +++ b/testing/go/foreign_keys_test.go @@ -231,8 +231,6 @@ func TestForeignKeys(t *testing.T) { ExpectedErr: "incompatible types", }, { - // varchar -> text should work, but key detection is broken. https://github.com/dolthub/doltgresql/issues/1402 - Skip: true, Query: "alter table child add constraint fvt foreign key (v) references parent(t);", }, { @@ -242,13 +240,9 @@ func TestForeignKeys(t *testing.T) { Query: "alter table child add constraint fvlv foreign key (vl) references parent(v);", }, { - // varchar(100) -> text should work, but key detection is broken. https://github.com/dolthub/doltgresql/issues/1402 - Skip: true, Query: "alter table child add constraint fvlt foreign key (vl) references parent(t);", }, { - // text -> text should work, but key detection is broken. https://github.com/dolthub/doltgresql/issues/1402 - Skip: true, Query: "alter table child add constraint ftt foreign key (t) references parent(t);", }, { diff --git a/testing/go/getting_started_guide_test.go b/testing/go/getting_started_guide_test.go index ea574f1d4c..eb16feff9f 100644 --- a/testing/go/getting_started_guide_test.go +++ b/testing/go/getting_started_guide_test.go @@ -100,7 +100,6 @@ func TestGettingStartedGuide(t *testing.T) { }, }, { - Skip: true, // This returns no rows for some reason. See https://github.com/dolthub/doltgresql/issues/1063 Query: "select * from employees_teams where employee_id='0' and team_id='1';", Expected: []sql.Row{{1, 0}}, },