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 2022/04/12 23:06:53 UTC

[superset] branch set-is-temp created (now b18ec43071)

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

hugh pushed a change to branch set-is-temp
in repository https://gitbox.apache.org/repos/asf/superset.git


      at b18ec43071 explicitly set is_temporal

This branch includes the following new commits:

     new b18ec43071 explicitly set is_temporal

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: explicitly set is_temporal

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

hugh pushed a commit to branch set-is-temp
in repository https://gitbox.apache.org/repos/asf/superset.git

commit b18ec43071df0eef3f673eb9217846a1e386ebdc
Author: hughhhh <hu...@gmail.com>
AuthorDate: Tue Apr 12 19:05:00 2022 -0400

    explicitly set is_temporal
---
 superset/views/core.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset/views/core.py b/superset/views/core.py
index 0f5b88887c..31fb0ef4c4 100755
--- a/superset/views/core.py
+++ b/superset/views/core.py
@@ -2120,6 +2120,7 @@ class Superset(BaseSupersetView):  # pylint: disable=too-many-public-methods
                 filterable=True,
                 groupby=True,
                 is_dttm=config_.get("is_dttm", False),
+                is_temporal=config_.get("is_temporal", False),
                 type=config_.get("type", False),
             )
             cols.append(col)