feat: alter fulltext index (#196)

This commit is contained in:
Yohan Wal
2024-11-09 07:06:55 +08:00
committed by GitHub
parent 396206c280
commit 67bb1d52bc
9 changed files with 2990 additions and 412 deletions
+13
View File
@@ -110,6 +110,7 @@ message AlterExpr {
RenameTable rename_table = 6;
ChangeColumnTypes change_column_types = 7;
ChangeTableOptions change_table_options = 8;
ChangeColumnFulltext change_column_fulltext = 9;
}
}
@@ -198,3 +199,15 @@ message AddColumnLocation {
LocationType location_type = 1;
string after_column_name = 2;
}
enum Analyzer {
ENGLISH = 0;
CHINESE = 1;
}
message ChangeColumnFulltext {
string column_name = 1;
bool enable = 2;
Analyzer analyzer = 3;
bool case_sensitive = 4;
}