This is an automated email from the ASF dual-hosted git repository. erikrit pushed a commit to branch etr2460-patch-1 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 4c63609bd0147d2263fda1d2a16d09212187c8e3 Author: Erik Ritter <[email protected]> AuthorDate: Fri Apr 23 12:43:15 2021 -0700 fix: unbreak CI --- superset/db_engine_specs/db2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset/db_engine_specs/db2.py b/superset/db_engine_specs/db2.py index 40bcb71..1179198 100644 --- a/superset/db_engine_specs/db2.py +++ b/superset/db_engine_specs/db2.py @@ -19,7 +19,7 @@ from superset.db_engine_specs.base import BaseEngineSpec, LimitMethod class Db2EngineSpec(BaseEngineSpec): engine = "db2" - engine_aliases = ("ibm_db_sa",) + engine_aliases = {"ibm_db_sa"} engine_name = "IBM Db2" limit_method = LimitMethod.WRAP_SQL force_column_alias_quotes = True
