diff --git a/lib/Db/Driver.php b/lib/Db/Driver.php index 81241e52..959a5500 100644 --- a/lib/Db/Driver.php +++ b/lib/Db/Driver.php @@ -76,7 +76,4 @@ interface Driver { * - "like": the case-insensitive LIKE operator */ public function sqlToken(string $token): string; - - /** Indicates whether the implementation is capable of full-text searching */ - public function fulltextEnabled(): bool; } diff --git a/lib/Db/MySQL/Driver.php b/lib/Db/MySQL/Driver.php index ac3fa795..8a4fe445 100644 --- a/lib/Db/MySQL/Driver.php +++ b/lib/Db/MySQL/Driver.php @@ -212,8 +212,4 @@ class Driver extends \JKingWeb\Arsse\Db\AbstractDriver { public function prepareArray(string $query, array $paramTypes): \JKingWeb\Arsse\Db\Statement { return new Statement($this->db, $query, $paramTypes, $this->packetSize); } - - public function fulltextEnabled(): bool { - return false; - } } diff --git a/lib/Db/PostgreSQL/Driver.php b/lib/Db/PostgreSQL/Driver.php index e138afa9..08c439d3 100644 --- a/lib/Db/PostgreSQL/Driver.php +++ b/lib/Db/PostgreSQL/Driver.php @@ -221,8 +221,4 @@ class Driver extends \JKingWeb\Arsse\Db\AbstractDriver { public function prepareArray(string $query, array $paramTypes): \JKingWeb\Arsse\Db\Statement { return new Statement($this->db, $query, $paramTypes); } - - public function fulltextEnabled(): bool { - return false; - } } diff --git a/lib/Db/SQLite3/Driver.php b/lib/Db/SQLite3/Driver.php index e979d7c1..f7e47fb9 100644 --- a/lib/Db/SQLite3/Driver.php +++ b/lib/Db/SQLite3/Driver.php @@ -179,8 +179,4 @@ class Driver extends \JKingWeb\Arsse\Db\AbstractDriver { $this->exec((!$rollback) ? "COMMIT" : "ROLLBACK"); return true; } - - public function fulltextEnabled(): bool { - return false; - } }