From 4f111c5b305078a641d13ac41ce7d798e3cc19ce Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Thu, 18 Aug 2022 12:06:31 +0200 Subject: 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 --- app/Models/EntryDAOSQLite.php | 4 ---- 1 file changed, 4 deletions(-) (limited to 'app/Models/EntryDAOSQLite.php') diff --git a/app/Models/EntryDAOSQLite.php b/app/Models/EntryDAOSQLite.php index 27a7c3560..b1ab6601e 100644 --- a/app/Models/EntryDAOSQLite.php +++ b/app/Models/EntryDAOSQLite.php @@ -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; } -- cgit v1.2.3