From 24912cca339eaaaf93869d67b5fe3f95c222c062 Mon Sep 17 00:00:00 2001 From: PApostol Date: Wed, 1 Dec 2021 21:26:44 +0000 Subject: [PATCH] Update docstrings in presto.py --- superset/db_engine_specs/presto.py | 3 --- 1 file changed, 3 deletions(-) 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}"