Skip to content

Commit

Permalink
Add drop view if exists test
Browse files Browse the repository at this point in the history
  • Loading branch information
tbantle22 committed Nov 15, 2024
1 parent ff5ba9e commit 2998b02
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion testing/go/dolt_tables_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2096,7 +2096,11 @@ func TestUserSpaceDoltTables(t *testing.T) {
},
},
{
Query: "DROP VIEW newschema.testView",
Query: "DROP VIEW IF EXISTS noexist.testView",
Expected: []sql.Row{},
},
{
Query: "DROP VIEW IF EXISTS newschema.testView",
Expected: []sql.Row{},
},
{
Expand Down

0 comments on commit 2998b02

Please sign in to comment.