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/19 06:19:29 UTC

[skywalking-banyandb] branch unify-index-filters updated (971da0e1 -> 2b354388)

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 971da0e1 Merge branch 'main' into unify-index-filters
     add 33579b10 Add UI for creating and editing tagfamilies and tags. Change some UI styles. (#224)
     add 7a69c0af Fix integration test's leaked goroutines (#237)
     add 9eb437d6 Introduce the optimization phase (#242)
     add 2b354388 Merge branch 'main' into unify-index-filters

No new revisions were added by this update.

Summary of changes:
 dist/LICENSE                                       |   67 +-
 ...vue-compiler-sfc-node-modules-magic-string.txt} |    0
 ...tivity-transform-node-modules-magic-string.txt} |    0
 dist/licenses/ui-licenses/license-sass.txt         |  584 +++---
 pkg/query/logical/common.go                        |   13 +
 pkg/query/logical/measure/measure_analyzer.go      |   57 +-
 .../measure/measure_plan_indexscan_local.go        |  106 +-
 pkg/query/logical/measure/schema.go                |    6 +-
 pkg/query/logical/optimizer.go                     |  102 +
 pkg/query/logical/plan.go                          |  131 +-
 pkg/query/logical/plan_orderby.go                  |  101 -
 pkg/query/logical/stream/stream_analyzer.go        |  151 +-
 .../logical/stream/stream_plan_indexscan_local.go  |   36 +-
 pkg/query/logical/stream/stream_plan_tag_filter.go |   33 +-
 test/cases/measure/data/want/bottom.yaml           |   44 +-
 test/cases/measure/data/want/top.yaml              |   44 +-
 test/integration/cold_query/query_suite_test.go    |    4 +
 test/integration/load/load_suite_test.go           |    4 +
 test/integration/other/measure_test.go             |    4 +
 test/integration/other/property_test.go            |    4 +
 test/integration/other/tls_test.go                 |    4 +
 test/integration/query/query_suite_test.go         |    4 +
 ui/LICENSE                                         |   67 +-
 ui/package-lock.json                               | 2032 ++++++++------------
 ui/src/App.vue                                     |   68 +-
 .../DialogResources/{index.vue => TagDialog.vue}   |  102 +-
 .../Aside/components/DialogResources/index.vue     |   90 +-
 .../RightMenu/components/right-menu-item.vue       |   36 +-
 .../Database/Aside/components/RightMenu/index.vue  |    8 +-
 ui/src/components/Database/Aside/index.vue         |   26 +-
 .../Database/Main/components/DataTable/index.vue   |    2 +-
 .../Database/Main/components/DrawerRight/index.vue |    3 -
 .../Main/components/SecondNavigation/index.vue     |   22 +-
 ui/src/components/Database/Main/index.vue          |    4 +-
 ui/src/components2/Aside/index.vue                 |  586 ++++++
 ui/src/components2/CodeMirror/index.vue            |  164 ++
 .../Header/components/header.vue}                  |  111 +-
 .../MainStart => components2/Header}/index.vue     |   40 +-
 ui/src/components2/Read/index.vue                  |  283 +++
 .../RightMenu/components/right-menu-item.vue       |   36 +-
 .../components => components2}/RightMenu/index.vue |    8 +-
 .../MainStart => components2/Start}/index.vue      |   29 +-
 ui/src/components2/StreamEditor/index.vue          |   87 +
 ui/src/components2/TopNav/index.vue                |  161 ++
 ui/src/router/index.js                             |  114 +-
 ui/src/stores/tags.js                              |    3 +-
 ui/src/styles/custom.scss                          |    4 +-
 ui/src/styles/elementPlus.scss                     |   81 +-
 ui/src/styles/main.scss                            |    5 +-
 ui/src/utils/axios.js                              |   12 +-
 .../{DashboardView.vue => Dashboard/index.vue}     |   15 +-
 .../{DashboardView.vue => Measure/createEdit.vue}  |   12 +-
 .../MainStart => views/Measure}/index.vue          |   45 +-
 .../{NotFoundView.vue => Measure/measure.vue}      |   16 +-
 .../views/{PropertyView.vue => Property/index.vue} |   19 +-
 .../{PropertyView.vue => Stream/createEdit.vue}    |   21 +-
 .../MainStart => views/Stream}/index.vue           |   45 +-
 .../views/{DashboardView.vue => Stream/stream.vue} |   12 +-
 58 files changed, 3507 insertions(+), 2361 deletions(-)
 copy dist/licenses/ui-licenses/{license-magic-string.txt => license--vue-compiler-sfc-node-modules-magic-string.txt} (100%)
 rename dist/licenses/ui-licenses/{license-magic-string.txt => license--vue-reactivity-transform-node-modules-magic-string.txt} (100%)
 create mode 100644 pkg/query/logical/optimizer.go
 delete mode 100644 pkg/query/logical/plan_orderby.go
 copy ui/src/components/Database/Aside/components/DialogResources/{index.vue => TagDialog.vue} (57%)
 create mode 100644 ui/src/components2/Aside/index.vue
 create mode 100644 ui/src/components2/CodeMirror/index.vue
 copy ui/src/{components/Header/index.vue => components2/Header/components/header.vue} (57%)
 copy ui/src/{components/Database/Main/components/MainStart => components2/Header}/index.vue (64%)
 create mode 100644 ui/src/components2/Read/index.vue
 copy ui/src/{components/Database/Aside/components => components2}/RightMenu/components/right-menu-item.vue (75%)
 copy ui/src/{components/Database/Aside/components => components2}/RightMenu/index.vue (77%)
 copy ui/src/{components/Database/Main/components/MainStart => components2/Start}/index.vue (64%)
 create mode 100644 ui/src/components2/StreamEditor/index.vue
 create mode 100644 ui/src/components2/TopNav/index.vue
 copy ui/src/views/{DashboardView.vue => Dashboard/index.vue} (86%)
 copy ui/src/views/{DashboardView.vue => Measure/createEdit.vue} (87%)
 copy ui/src/{components/Database/Main/components/MainStart => views/Measure}/index.vue (55%)
 copy ui/src/views/{NotFoundView.vue => Measure/measure.vue} (87%)
 copy ui/src/views/{PropertyView.vue => Property/index.vue} (88%)
 copy ui/src/views/{PropertyView.vue => Stream/createEdit.vue} (86%)
 copy ui/src/{components/Database/Main/components/MainStart => views/Stream}/index.vue (54%)
 copy ui/src/views/{DashboardView.vue => Stream/stream.vue} (85%)