1
1
Fork 0
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:
J. King 2019-02-22 18:49:57 -05:00
parent ace94e3ef8
commit 570a9b171c
4 changed files with 0 additions and 15 deletions

View file

@ -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;
}

View file

@ -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;
}
}

View file

@ -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;
}
}

View file

@ -179,8 +179,4 @@ class Driver extends \JKingWeb\Arsse\Db\AbstractDriver {
$this->exec((!$rollback) ? "COMMIT" : "ROLLBACK");
return true;
}
public function fulltextEnabled(): bool {
return false;
}
}