Merge pull request #3673 from influxdb/dont_list

No need to list, just take map's size
pull/3675/merge
Philip O'Toole 2015-08-14 16:09:14 -07:00
commit 21a6bd267b
1 changed files with 1 additions and 1 deletions

View File

@ -478,7 +478,7 @@ func (e *Executor) executeAggregate(out chan *influxql.Row) {
values = e.processDerivative(values)
// 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
}