[improvement](project) Switch ENTITY to TAG uniformly in the queryType and semanticQuery (#420)

This commit is contained in:
lexluo09
2023-11-24 18:17:48 +08:00
committed by GitHub
parent d79e30cd7a
commit fe2a424718
17 changed files with 61 additions and 61 deletions

View File

@@ -211,7 +211,7 @@ public class QueryReqConverter {
private QueryType getQueryType(AggOption aggOption) {
boolean isAgg = AggOption.isAgg(aggOption);
QueryType queryType = QueryType.ENTITY;
QueryType queryType = QueryType.TAG;
if (isAgg) {
queryType = QueryType.METRIC;
}