1
0

Implement tsvector search support

This commit is contained in:
PrivateGER
2025-02-19 14:55:50 +01:00
parent d67eefaaf5
commit d82c8e8e97
3 changed files with 63 additions and 1 deletions
+1 -1
View File
@@ -254,7 +254,7 @@ export type Config = {
};
};
export type FulltextSearchProvider = 'sqlLike' | 'sqlPgroonga' | 'meilisearch';
export type FulltextSearchProvider = 'sqlLike' | 'sqlPgroonga' | 'meilisearch' | 'tsvector';
const _filename = fileURLToPath(import.meta.url);
const _dirname = dirname(_filename);