Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions testing/go/foreign_keys_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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);",
},
{
Expand All @@ -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);",
},
{
Expand Down
1 change: 0 additions & 1 deletion testing/go/getting_started_guide_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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}},
},
Expand Down