mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
fix: tests on database, dataset, saved_queries apis (#28397)
This commit is contained in:
committed by
GitHub
parent
e1a440fa36
commit
9c065951e7
@@ -194,6 +194,7 @@ class TestDatabaseApi(SupersetTestCase):
|
||||
"allow_cvas",
|
||||
"allow_dml",
|
||||
"allow_file_upload",
|
||||
"allow_multi_catalog",
|
||||
"allow_run_async",
|
||||
"allows_cost_estimate",
|
||||
"allows_subquery",
|
||||
@@ -3256,6 +3257,7 @@ class TestDatabaseApi(SupersetTestCase):
|
||||
"sqlalchemy_uri_placeholder": "postgresql://user:password@host:port/dbname[?key=value&key=value...]",
|
||||
"engine_information": {
|
||||
"supports_file_upload": True,
|
||||
"supports_dynamic_catalog": True,
|
||||
"disable_ssh_tunneling": False,
|
||||
},
|
||||
},
|
||||
@@ -3279,6 +3281,7 @@ class TestDatabaseApi(SupersetTestCase):
|
||||
"sqlalchemy_uri_placeholder": "bigquery://{project_id}",
|
||||
"engine_information": {
|
||||
"supports_file_upload": True,
|
||||
"supports_dynamic_catalog": False,
|
||||
"disable_ssh_tunneling": True,
|
||||
},
|
||||
},
|
||||
@@ -3334,6 +3337,7 @@ class TestDatabaseApi(SupersetTestCase):
|
||||
"sqlalchemy_uri_placeholder": "redshift+psycopg2://user:password@host:port/dbname[?key=value&key=value...]",
|
||||
"engine_information": {
|
||||
"supports_file_upload": True,
|
||||
"supports_dynamic_catalog": False,
|
||||
"disable_ssh_tunneling": False,
|
||||
},
|
||||
},
|
||||
@@ -3357,6 +3361,7 @@ class TestDatabaseApi(SupersetTestCase):
|
||||
"sqlalchemy_uri_placeholder": "gsheets://",
|
||||
"engine_information": {
|
||||
"supports_file_upload": True,
|
||||
"supports_dynamic_catalog": False,
|
||||
"disable_ssh_tunneling": True,
|
||||
},
|
||||
},
|
||||
@@ -3412,6 +3417,7 @@ class TestDatabaseApi(SupersetTestCase):
|
||||
"sqlalchemy_uri_placeholder": "mysql://user:password@host:port/dbname[?key=value&key=value...]",
|
||||
"engine_information": {
|
||||
"supports_file_upload": True,
|
||||
"supports_dynamic_catalog": False,
|
||||
"disable_ssh_tunneling": False,
|
||||
},
|
||||
},
|
||||
@@ -3423,6 +3429,7 @@ class TestDatabaseApi(SupersetTestCase):
|
||||
"sqlalchemy_uri_placeholder": "engine+driver://user:password@host:port/dbname[?key=value&key=value...]",
|
||||
"engine_information": {
|
||||
"supports_file_upload": True,
|
||||
"supports_dynamic_catalog": False,
|
||||
"disable_ssh_tunneling": False,
|
||||
},
|
||||
},
|
||||
@@ -3455,6 +3462,7 @@ class TestDatabaseApi(SupersetTestCase):
|
||||
"sqlalchemy_uri_placeholder": "mysql://user:password@host:port/dbname[?key=value&key=value...]",
|
||||
"engine_information": {
|
||||
"supports_file_upload": True,
|
||||
"supports_dynamic_catalog": False,
|
||||
"disable_ssh_tunneling": False,
|
||||
},
|
||||
},
|
||||
@@ -3466,6 +3474,7 @@ class TestDatabaseApi(SupersetTestCase):
|
||||
"sqlalchemy_uri_placeholder": "engine+driver://user:password@host:port/dbname[?key=value&key=value...]",
|
||||
"engine_information": {
|
||||
"supports_file_upload": True,
|
||||
"supports_dynamic_catalog": False,
|
||||
"disable_ssh_tunneling": False,
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user