This is an automated email from the ASF dual-hosted git repository. hanahmily pushed a commit to branch bug/empty-trace in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
commit a63aa1ea322e9e47fa6f14b4a6ced2069c530b95 Merge: 0c891e37 b5307c6e Author: Gao Hongtao <[email protected]> AuthorDate: Thu Nov 20 05:37:56 2025 +0000 Merge remote-tracking branch 'origin/main' into bug/empty-trace banyand/internal/sidx/interfaces.go | 2 + banyand/internal/sidx/introducer.go | 28 +++++++ banyand/internal/sidx/sidx_test.go | 131 +++++++++++++++++++++++++++++++ banyand/trace/handoff_controller.go | 4 +- banyand/trace/snapshot.go | 7 ++ banyand/trace/streaming_pipeline_test.go | 2 + banyand/trace/svc_liaison.go | 22 ++++-- 7 files changed, 188 insertions(+), 8 deletions(-) diff --cc banyand/trace/streaming_pipeline_test.go index ff74b09a,9e313f70..339208d2 --- a/banyand/trace/streaming_pipeline_test.go +++ b/banyand/trace/streaming_pipeline_test.go @@@ -81,9 -81,7 +81,10 @@@ func (f *fakeSIDX) StreamingParts(map[u } func (f *fakeSIDX) PartPaths(map[uint64]struct{}) map[uint64]string { return map[uint64]string{} } func (f *fakeSIDX) IntroduceSynced(map[uint64]struct{}) func() { return func() {} } + func (f *fakeSIDX) TakeFileSnapshot(_ string) error { return nil } +func (f *fakeSIDX) ScanQuery(context.Context, sidx.ScanQueryRequest) ([]*sidx.QueryResponse, error) { + return nil, nil +} type fakeSIDXWithErr struct { *fakeSIDX
