fix(dataset-api): allow undefined schema in post (#24242)

This commit is contained in:
Ville Brofeldt
2023-05-30 17:48:54 +03:00
committed by GitHub
parent f56c851ec8
commit 8375baac99
2 changed files with 5 additions and 3 deletions

View File

@@ -530,7 +530,7 @@ class TestDatasetApi(SupersetTestCase):
self.login(username="admin")
table_data = {
"database": main_db.id,
"schema": "",
"schema": None,
"table_name": "ab_permission",
}
uri = "api/v1/dataset/"