You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by lu...@apache.org on 2023/01/14 14:12:08 UTC

[skywalking-banyandb] branch unify-index-filters updated (5b222c4 -> 073a80d)

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

lujiajing pushed a change to branch unify-index-filters
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git


    from 5b222c4  revert pkg doc
     add 5308398  Support 64-bit float field (#240)
     add 073a80d  Merge branch 'main' into unify-index-filters

No new revisions were added by this update.

Summary of changes:
 api/proto/banyandb/database/v1/schema.proto        |   1 +
 api/proto/banyandb/model/v1/common.proto           |   5 +
 banyand/measure/encode.go                          |   4 +-
 banyand/measure/measure_suite_test.go              |   4 +-
 banyand/measure/measure_write.go                   |   2 +
 banyand/measure/metadata_test.go                   |   6 +-
 banyand/query/processor_topn.go                    |   4 +-
 docs/api-reference.md                              |  18 +
 pkg/convert/number.go                              |  13 +
 pkg/encoding/{int.go => encoder.go}                |  94 +++--
 pkg/encoding/encoder_test.go                       | 392 +++++++++++++++++++++
 pkg/encoding/int_test.go                           | 251 -------------
 pkg/pb/v1/metadata.go                              |   6 +-
 pkg/pb/v1/write.go                                 |   9 +
 pkg/query/aggregation/aggregation.go               |  93 ++++-
 pkg/query/aggregation/function.go                  |  85 ++---
 .../logical/measure/measure_plan_aggregation.go    | 144 +++++---
 pkg/schema/metadata.go                             |   2 +
 .../testdata/measures/instance_clr_cpu_minute.json |  50 +++
 .../measure/data/input/{all.yaml => float.yaml}    |   6 +-
 .../data/input/{all.yaml => float_agg_min.yaml}    |   9 +-
 .../testdata/instance_clr_cpu_minute_data.json     |  45 ++-
 .../measure/data/want/{in.yaml => float.yaml}      |  57 ++-
 .../want/{tag_filter.yaml => float_agg_min.yaml}   |  28 +-
 test/cases/measure/measure.go                      |   2 +
 test/integration/cold_query/query_suite_test.go    |  29 +-
 test/integration/query/query_suite_test.go         |  29 +-
 27 files changed, 883 insertions(+), 505 deletions(-)
 rename pkg/encoding/{int.go => encoder.go} (68%)
 create mode 100644 pkg/encoding/encoder_test.go
 delete mode 100644 pkg/encoding/int_test.go
 create mode 100644 pkg/test/measure/testdata/measures/instance_clr_cpu_minute.json
 copy test/cases/measure/data/input/{all.yaml => float.yaml} (88%)
 copy test/cases/measure/data/input/{all.yaml => float_agg_min.yaml} (83%)
 copy pkg/query/logical/testdata/measure_query_data.json => test/cases/measure/data/testdata/instance_clr_cpu_minute_data.json (61%)
 copy test/cases/measure/data/want/{in.yaml => float.yaml} (62%)
 copy test/cases/measure/data/want/{tag_filter.yaml => float_agg_min.yaml} (80%)