feat: add backend option to SetFulltext (#226)

Signed-off-by: Zhenchi <zhongzc_arch@outlook.com>
This commit is contained in:
Zhenchi
2025-04-02 18:07:15 +08:00
committed by GitHub
parent 103948cbce
commit 9327e1098c
5 changed files with 636 additions and 242 deletions
+6
View File
@@ -231,11 +231,17 @@ enum Analyzer {
CHINESE = 1;
}
enum FulltextBackend {
TANTIVY = 0;
BLOOM = 1;
}
message SetFulltext {
string column_name = 1;
bool enable = 2;
Analyzer analyzer = 3;
bool case_sensitive = 4;
FulltextBackend backend = 5;
}
message UnsetFulltext {