Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/en/changes/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* Remove `bydb.dependencies.properties` and set the compatible BanyanDB API version number in `${SW_STORAGE_BANYANDB_COMPATIBLE_SERVER_API_VERSIONS}`
* Fix trace profiling query time range condition.
* Fix BanyanDB time range overflow in profile thread snapshot query.
* MQE: fix multiple labeled metric query and ensure no results are returned if no label value combinations match.

#### UI
* Fix the missing icon in new native trace view.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,8 @@ public static List<String> composeLabelConditions(final List<KeyValue> queryLabe
});
if (!keySet.isEmpty()) {
keySets.add(keySet);
} else { // If any query label has no matches, clear all keySets so that no results are returned
keySets.clear();
}
}
//intersection labels
Expand Down
Loading