[improvement](chat) remove nativeQuery config in chat (#394)

This commit is contained in:
lexluo09
2023-11-16 21:51:08 +08:00
committed by GitHub
parent 11cdcb29fa
commit 05b1a7ec3b
25 changed files with 99 additions and 117 deletions

View File

@@ -0,0 +1,23 @@
package com.tencent.supersonic.common.pojo;
/***
* Query Type
*/
public enum QueryType {
/**
* queries with metrics included in the select statement
*/
METRIC,
/**
* queries with entity unique key included in the select statement
*/
ENTITY,
/**
* the other queries
*/
OTHER;
public boolean isNativeAggQuery() {
return ENTITY.equals(this);
}
}