Easier full-text search possibility (#4505)

* Easier full-text search possibility
Contributes to https://github.com/FreshRSS/FreshRSS/issues/1331
Avoid concats in searches to make text indexes easier to build

* Fix tests

* Documentation
This commit is contained in:
Alexandre Alapetite
2022-08-18 12:06:31 +02:00
committed by GitHub
parent 2acf3a4dd8
commit 4f111c5b30
6 changed files with 54 additions and 22 deletions

View File

@@ -10,10 +10,6 @@ class FreshRSS_EntryDAOSQLite extends FreshRSS_EntryDAO {
return false;
}
protected static function sqlConcat($s1, $s2) {
return $s1 . '||' . $s2;
}
public static function sqlHexDecode(string $x): string {
return $x;
}