diff --git a/superset/db_engine_specs/presto.py b/superset/db_engine_specs/presto.py index 68feb3f41eb0e..7f8405220d060 100644 --- a/superset/db_engine_specs/presto.py +++ b/superset/db_engine_specs/presto.py @@ -235,7 +235,6 @@ def update_impersonation_config( that can set the correct properties for impersonating users :param connect_args: config to be updated :param uri: URI string - :param impersonate_user: Flag indicating if impersonation is enabled :param username: Effective username :return: None """ @@ -661,9 +660,7 @@ def estimate_statement_cost(cls, statement: str, cursor: Any) -> Dict[str, Any]: Run a SQL query that estimates the cost of a given statement. :param statement: A single SQL statement - :param database: Database instance :param cursor: Cursor instance - :param username: Effective username :return: JSON response from Presto """ sql = f"EXPLAIN (TYPE IO, FORMAT JSON) {statement}"