mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-23 09:16:36 -06:00
Improve word similarity search
This commit is contained in:
parent
565a11d8d3
commit
f27f392721
@ -577,7 +577,7 @@ export class VideosIdListQueryBuilder extends AbstractRunQuery {
|
||||
this.cte.push(
|
||||
'"trigramSearch" AS (' +
|
||||
' SELECT "video"."id", ' +
|
||||
` similarity(lower(immutable_unaccent("video"."name")), lower(immutable_unaccent(${escapedSearch}))) as similarity ` +
|
||||
` word_similarity(lower(immutable_unaccent("video"."name")), lower(immutable_unaccent(${escapedSearch}))) as similarity ` +
|
||||
' FROM "video" ' +
|
||||
' WHERE lower(immutable_unaccent("video"."name")) % lower(immutable_unaccent(' + escapedSearch + ')) OR ' +
|
||||
' lower(immutable_unaccent("video"."name")) LIKE lower(immutable_unaccent(' + escapedLikeSearch + '))' +
|
||||
|
Loading…
Reference in New Issue
Block a user