From 20c34a1cb5c23c72977d89a5394cb3ceb9514060 Mon Sep 17 00:00:00 2001 From: Taylor Bantle Date: Fri, 15 Nov 2024 10:58:50 -0800 Subject: [PATCH] Add drop view if exists test --- testing/go/dolt_tables_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testing/go/dolt_tables_test.go b/testing/go/dolt_tables_test.go index 936e11eb57..8001333fdc 100755 --- a/testing/go/dolt_tables_test.go +++ b/testing/go/dolt_tables_test.go @@ -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{},