This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a change to branch repair_state_tree
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
from da5025a1 Merge branch 'main' into repair_state_tree
add 2448acb2 Encode each column based on its data type (#688)
add e744fb49 Merge branch 'main' into repair_state_tree
No new revisions were added by this update.
Summary of changes:
banyand/measure/benchmark_encode_test.go | 226 ++++++++++++++++++++++++++++
banyand/measure/column.go | 247 +++++++++++++++++++++++++++++--
banyand/measure/column_test.go | 80 ++++++----
banyand/measure/part_test.go | 4 +-
banyand/stream/block_test.go | 3 +
banyand/stream/part_test.go | 4 +-
banyand/stream/tag.go | 247 +++++++++++++++++++++++++++++--
banyand/stream/tag_test.go | 85 +++++++----
pkg/bytes/buffer.go | 11 ++
pkg/convert/number.go | 40 +++++
pkg/encoding/encoding.go | 1 +
pkg/encoding/float.go | 90 +++++++++++
pkg/encoding/float_test.go | 116 +++++++++++++++
13 files changed, 1081 insertions(+), 73 deletions(-)
create mode 100644 banyand/measure/benchmark_encode_test.go
create mode 100644 pkg/encoding/float.go
create mode 100644 pkg/encoding/float_test.go