mirror of https://github.com/apache/druid.git
Merge pull request #2494 from himanshug/fix_timeseries
do not drop post-aggs in TimeseriesQueryToolChest.makePreComputeManipulatorFn
This commit is contained in:
commit
8ee81947cd
|
@ -238,8 +238,8 @@ public class TimeseriesQueryQueryToolChest extends QueryToolChest<Result<Timeser
|
||||||
@Override
|
@Override
|
||||||
public Result<TimeseriesResultValue> apply(Result<TimeseriesResultValue> result)
|
public Result<TimeseriesResultValue> apply(Result<TimeseriesResultValue> result)
|
||||||
{
|
{
|
||||||
final Map<String, Object> values = Maps.newHashMap();
|
|
||||||
final TimeseriesResultValue holder = result.getValue();
|
final TimeseriesResultValue holder = result.getValue();
|
||||||
|
final Map<String, Object> values = Maps.newHashMap(holder.getBaseObject());
|
||||||
if (calculatePostAggs) {
|
if (calculatePostAggs) {
|
||||||
// put non finalized aggregators for calculating dependent post Aggregators
|
// put non finalized aggregators for calculating dependent post Aggregators
|
||||||
for (AggregatorFactory agg : query.getAggregatorSpecs()) {
|
for (AggregatorFactory agg : query.getAggregatorSpecs()) {
|
||||||
|
|
Loading…
Reference in New Issue