chore: remove unused member from TagSet (#22930)
Co-authored-by: Tristan Su <suqing.sq@alibaba-inc.com>pull/22946/head
parent
4ee93a9b22
commit
9308b6586a
|
@ -17,7 +17,6 @@ const (
|
||||||
// TagSet is a fundamental concept within the query system. It represents a composite series,
|
// TagSet is a fundamental concept within the query system. It represents a composite series,
|
||||||
// composed of multiple individual series that share a set of tag attributes.
|
// composed of multiple individual series that share a set of tag attributes.
|
||||||
type TagSet struct {
|
type TagSet struct {
|
||||||
Tags map[string]string
|
|
||||||
Filters []influxql.Expr
|
Filters []influxql.Expr
|
||||||
SeriesKeys []string
|
SeriesKeys []string
|
||||||
Key []byte
|
Key []byte
|
||||||
|
|
|
@ -3122,8 +3122,7 @@ func (is IndexSet) TagSets(sfile *SeriesFile, name []byte, opt query.IteratorOpt
|
||||||
if !ok {
|
if !ok {
|
||||||
// This TagSet is new, create a new entry for it.
|
// This TagSet is new, create a new entry for it.
|
||||||
tagSet = &query.TagSet{
|
tagSet = &query.TagSet{
|
||||||
Tags: nil,
|
Key: tagsAsKey,
|
||||||
Key: tagsAsKey,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue