(improvment)(chat) semantic parse info dimension filters support UNION and AND splicing methods (#203)

Co-authored-by: jolunoluo
This commit is contained in:
LXW
2023-10-13 11:33:03 +08:00
committed by GitHub
parent 886ee32e2f
commit e4280e5516
6 changed files with 37 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
package com.tencent.supersonic.common.pojo.enums;
public enum FilterType {
//filtering between different dimensions will directly splice the AND clause
AND,
//filtering between different dimensions will generate multiple sql clauses and splice them together using union
UNION
}