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 20c34a1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions testing/go/dolt_tables_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2099,6 +2099,10 @@ func TestUserSpaceDoltTables(t *testing.T) {
Query: "DROP VIEW newschema.testView",
Expected: []sql.Row{},
},
{
Query: "DROP VIEW IF EXISTS noexist.testView",
Expected: []sql.Row{},
},
{
Query: `SELECT name FROM newschema.dolt_schemas`,
Expected: []sql.Row{},
Expand Down

0 comments on commit 20c34a1

Please sign in to comment.