Skip to content

Commit

Permalink
[druid] fix 2 phases queries that specify 'Sort By' on 'Series limit' (
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch authored Jan 12, 2018
1 parent 269f55c commit 8069d62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion superset/connectors/druid/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1117,12 +1117,13 @@ def run_query( # noqa / druid
):
dim = list(qry.get('dimensions'))[0]
logging.info('Running two-phase topn query for dimension [{}]'.format(dim))
pre_qry = deepcopy(qry)
if timeseries_limit_metric:
order_by = timeseries_limit_metric
pre_qry['aggregations'] = self.get_aggregations([timeseries_limit_metric])
else:
order_by = list(qry['aggregations'].keys())[0]
# Limit on the number of timeseries, doing a two-phases query
pre_qry = deepcopy(qry)
pre_qry['granularity'] = 'all'
pre_qry['threshold'] = min(row_limit,
timeseries_limit or row_limit)
Expand Down

0 comments on commit 8069d62

Please sign in to comment.