mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
Revert fulltext detection in driver
This commit is contained in:
parent
ace94e3ef8
commit
570a9b171c
4 changed files with 0 additions and 15 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -179,8 +179,4 @@ class Driver extends \JKingWeb\Arsse\Db\AbstractDriver {
|
|||
$this->exec((!$rollback) ? "COMMIT" : "ROLLBACK");
|
||||
return true;
|
||||
}
|
||||
|
||||
public function fulltextEnabled(): bool {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue