This is an automated email from the ASF dual-hosted git repository.

hanahmily pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git


The following commit(s) were added to refs/heads/main by this push:
     new 99606f5  Clean up invalid todos (#207)
99606f5 is described below

commit 99606f5f688a897bc0d5e984b00f8c7710e35170
Author: Gao Hongtao <[email protected]>
AuthorDate: Tue Nov 8 19:14:02 2022 +0800

    Clean up invalid todos (#207)
    
    Signed-off-by: Gao Hongtao <[email protected]>
---
 banyand/metadata/schema/etcd.go     | 1 -
 banyand/tsdb/seriesdb.go            | 1 -
 pkg/query/logical/measure/schema.go | 5 -----
 pkg/query/logical/schema.go         | 1 -
 pkg/query/logical/stream/schema.go  | 5 -----
 5 files changed, 13 deletions(-)

diff --git a/banyand/metadata/schema/etcd.go b/banyand/metadata/schema/etcd.go
index 15f8eec..b640e21 100644
--- a/banyand/metadata/schema/etcd.go
+++ b/banyand/metadata/schema/etcd.go
@@ -355,7 +355,6 @@ func incrementLastByte(key string) string {
 func newStandaloneEtcdConfig(config *etcdSchemaRegistryConfig) *embed.Config {
        cfg := embed.NewConfig()
        cfg.LogLevel = config.loggerLevel
-       // TODO: allow user to set path
        cfg.Dir = filepath.Join(config.rootDir, "metadata")
        cURL, _ := url.Parse(config.listenerClientURL)
        pURL, _ := url.Parse(config.listenerPeerURL)
diff --git a/banyand/tsdb/seriesdb.go b/banyand/tsdb/seriesdb.go
index b878b38..6c4ae55 100644
--- a/banyand/tsdb/seriesdb.go
+++ b/banyand/tsdb/seriesdb.go
@@ -252,7 +252,6 @@ func (s *seriesDB) List(path Path) (SeriesList, error) {
 }
 
 func (s *seriesDB) span(ctx context.Context, timeRange timestamp.TimeRange) 
([]BlockDelegate, error) {
-       // TODO: return correct blocks
        result := make([]BlockDelegate, 0)
        for _, s := range s.segCtrl.span(timeRange) {
                dd, err := s.blockController.span(ctx, timeRange)
diff --git a/pkg/query/logical/measure/schema.go 
b/pkg/query/logical/measure/schema.go
index 7dcf54d..a3e1ed6 100644
--- a/pkg/query/logical/measure/schema.go
+++ b/pkg/query/logical/measure/schema.go
@@ -117,8 +117,3 @@ func (m *schema) registerField(fieldIdx int, spec 
*databasev1.FieldSpec) {
                Spec:     spec,
        }
 }
-
-func (m *schema) TraceIDFieldName() string {
-       // We don't have traceID for measure
-       panic("implement me")
-}
diff --git a/pkg/query/logical/schema.go b/pkg/query/logical/schema.go
index a37b08b..29e7c88 100644
--- a/pkg/query/logical/schema.go
+++ b/pkg/query/logical/schema.go
@@ -36,7 +36,6 @@ type Schema interface {
        ProjFields(refs ...*FieldRef) Schema
        Equal(Schema) bool
        ShardNumber() uint32
-       TraceIDFieldName() string
 }
 
 type TagSpec struct {
diff --git a/pkg/query/logical/stream/schema.go 
b/pkg/query/logical/stream/schema.go
index 805568a..fa5bce3 100644
--- a/pkg/query/logical/stream/schema.go
+++ b/pkg/query/logical/stream/schema.go
@@ -44,11 +44,6 @@ func (s *schema) EntityList() []string {
        return s.common.EntityList
 }
 
-func (s *schema) TraceIDFieldName() string {
-       // TODO: how to extract trace_id?
-       return "trace_id"
-}
-
 // IndexDefined checks whether the field given is indexed
 func (s *schema) IndexDefined(tagName string) (bool, *databasev1.IndexRule) {
        return s.common.IndexDefined(tagName)

Reply via email to