Merge pull request #3673 from influxdb/dont_list
No need to list, just take map's sizepull/3675/merge
commit
21a6bd267b
|
@ -478,7 +478,7 @@ func (e *Executor) executeAggregate(out chan *influxql.Row) {
|
||||||
values = e.processDerivative(values)
|
values = e.processDerivative(values)
|
||||||
|
|
||||||
// If we have multiple tag sets we'll want to filter out the empty ones
|
// If we have multiple tag sets we'll want to filter out the empty ones
|
||||||
if len(availTagSets.list()) > 1 && resultsEmpty(values) {
|
if len(availTagSets) > 1 && resultsEmpty(values) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue