[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

@@ -9,15 +9,15 @@ public enum QueryType {
*/
METRIC,
/**
* queries with entity unique key included in the select statement
* queries with only tag included in the select statement
*/
ENTITY,
TAG,
/**
* the other queries
*/
OTHER;
public boolean isNativeAggQuery() {
return ENTITY.equals(this);
return TAG.equals(this);
}
}