You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2018/03/20 05:15:45 UTC

[incubator-superset] branch master updated: Set filter_select_enabled default to True for Druid (#4608)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1435840  Set filter_select_enabled default to True for Druid (#4608)
1435840 is described below

commit 1435840e3854a87b25c1069d5bbeaad84db7ca17
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Mon Mar 19 22:15:43 2018 -0700

    Set filter_select_enabled default to True for Druid (#4608)
---
 superset/connectors/druid/models.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset/connectors/druid/models.py b/superset/connectors/druid/models.py
index ef081a7..74eb575 100644
--- a/superset/connectors/druid/models.py
+++ b/superset/connectors/druid/models.py
@@ -456,6 +456,7 @@ class DruidDatasource(Model, BaseDatasource):
     # Columns
     datasource_name = Column(String(255))
     is_hidden = Column(Boolean, default=False)
+    filter_select_enabled = Column(Boolean, default=True)  # override default
     fetch_values_from = Column(String(100))
     cluster_name = Column(
         String(250), ForeignKey('clusters.cluster_name'))

-- 
To stop receiving notification emails like this one, please contact
maximebeauchemin@apache.org.