You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by jo...@apache.org on 2022/09/13 05:26:50 UTC

[superset] branch john-bodley--db_engine_spec-execute created (now c1540a5d66)

This is an automated email from the ASF dual-hosted git repository.

johnbodley pushed a change to branch john-bodley--db_engine_spec-execute
in repository https://gitbox.apache.org/repos/asf/superset.git


      at c1540a5d66 Update hive.py

This branch includes the following new commits:

     new c1540a5d66 Update hive.py

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[superset] 01/01: Update hive.py

Posted by jo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

johnbodley pushed a commit to branch john-bodley--db_engine_spec-execute
in repository https://gitbox.apache.org/repos/asf/superset.git

commit c1540a5d66144952c2188e562f1d74cbc34b0a2d
Author: John Bodley <45...@users.noreply.github.com>
AuthorDate: Mon Sep 12 22:26:42 2022 -0700

    Update hive.py
---
 superset/db_engine_specs/hive.py | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/superset/db_engine_specs/hive.py b/superset/db_engine_specs/hive.py
index 8ea1bfddae..9aa72e2d5a 100644
--- a/superset/db_engine_specs/hive.py
+++ b/superset/db_engine_specs/hive.py
@@ -516,12 +516,6 @@ class HiveEngineSpec(PrestoEngineSpec):
             configuration["hive.server2.proxy.user"] = username
             connect_args["configuration"] = configuration
 
-    @staticmethod
-    def execute(  # type: ignore
-        cursor, query: str, async_: bool = False
-    ):  # pylint: disable=arguments-differ
-        kwargs = {"async": async_}
-        cursor.execute(query, **kwargs)
 
     @classmethod
     @cache_manager.cache.memoize()