updated daos.HasTable to check also for views

This commit is contained in:
Gani Georgiev
2023-02-21 20:03:27 +02:00
parent 41c3cc8a90
commit 4fdc8feafc
2 changed files with 3 additions and 2 deletions

View File

@@ -24,6 +24,7 @@ func TestHasTable(t *testing.T) {
{"_admins", true},
{"demo3", true},
{"DEMO3", true}, // table names are case insensitives by default
{"view1", true}, // view
}
for i, scenario := range scenarios {