This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
from b57a24fc TracećStream Series Metadata in Liaison Sending Queue (#896)
add d5dfceec Enhance tag filtering functionality by adding ContainsAll
method (#898)
No new revisions were added by this update.
Summary of changes:
banyand/cmd/dump/trace.go | 8 +-
banyand/internal/encoding/tag_encoder.go | 54 --
banyand/internal/encoding/tag_encoder_test.go | 46 --
banyand/internal/sidx/element.go | 26 +-
banyand/internal/sidx/tag.go | 2 +-
banyand/internal/sidx/tag_filter_op.go | 24 +-
banyand/stream/tag_filter.go | 3 +-
banyand/trace/query.go | 16 +-
banyand/trace/traces.go | 2 +-
pkg/encoding/array.go | 100 ++++
pkg/encoding/array_test.go | 142 +++++
pkg/filter/bloom_filter.go | 11 +
pkg/filter/dictionary_filter.go | 172 +++----
pkg/filter/dictionary_filter_test.go | 716 +++++++++++++++++++++-----
14 files changed, 962 insertions(+), 360 deletions(-)
create mode 100644 pkg/encoding/array.go
create mode 100644 pkg/encoding/array_test.go