mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-12 12:37:55 +00:00
[improvement](project) Switch ENTITY to TAG uniformly in the queryType and semanticQuery (#420)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user