You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2020/10/20 16:37:01 UTC

[incubator-superset] branch hugh/so-495 updated: remove debug

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

hugh pushed a commit to branch hugh/so-495
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/hugh/so-495 by this push:
     new ffa3d63  remove debug
ffa3d63 is described below

commit ffa3d63b326624d53c811c19394dfd8fd5c0fd34
Author: hughhhh <hu...@gmail.com>
AuthorDate: Tue Oct 20 09:36:34 2020 -0700

    remove debug
---
 superset/sql_parse.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/superset/sql_parse.py b/superset/sql_parse.py
index 52032d0..69002ac 100644
--- a/superset/sql_parse.py
+++ b/superset/sql_parse.py
@@ -89,7 +89,6 @@ class ParsedQuery:
 
         logger.debug("Parsing with sqlparse statement: %s", self.sql)
         self._parsed = sqlparse.parse(self.stripped())
-        logger.debug(self._parsed[0])
         for statement in self._parsed:
             self._limit = _extract_limit_from_query(statement)