[improvement][headless]Rename METRIC query type enum to AGGREGATE.

This commit is contained in:
jerryjzhang
2024-09-27 15:19:26 +08:00
parent c34c3ecf09
commit ae3e9f142b
14 changed files with 24 additions and 24 deletions

View File

@@ -2,9 +2,9 @@ package com.tencent.supersonic.common.pojo.enums;
/** Enumerate query types supported by SuperSonic. */
public enum QueryType {
/** queries with metric calculation (optionally slice and dice by dimensions) */
METRIC,
/** queries with tag-based entity targeting */
/** queries with aggregation (optionally slice and dice by dimensions) */
AGGREGATE,
/** queries with field selection */
DETAIL,
/** queries with ID-based entity selection */
ID;