Fix partition series set building.

pull/9315/head
Ben Johnson 2018-01-14 12:17:48 -07:00 committed by Edd Robinson
parent 9a15130a4c
commit b07e41fa7f
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ func (p *Partition) buildSeriesSet() error {
if err != nil {
return err
}
p.seriesIDSet.Diff(ss)
p.seriesIDSet.Merge(p.seriesIDSet, ss)
}
return nil
}