From ec9333b2b0d55ab71570504c0a2647e49a8d2417 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 26 Aug 2019 10:24:36 -0700 Subject: [PATCH] rdbms: remove unused $fulltextEnabled field from DatabaseSqlite Change-Id: Idad680485f6cf6b521a0ea33c02d30e78d1d6b50 --- includes/libs/rdbms/database/DatabaseSqlite.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/includes/libs/rdbms/database/DatabaseSqlite.php b/includes/libs/rdbms/database/DatabaseSqlite.php index b1521dca2f..2977291ca6 100644 --- a/includes/libs/rdbms/database/DatabaseSqlite.php +++ b/includes/libs/rdbms/database/DatabaseSqlite.php @@ -57,9 +57,6 @@ class DatabaseSqlite extends Database { /** @var array List of shared database already attached to this connection */ private $alreadyAttached = []; - /** @var bool Whether full text is enabled */ - private static $fulltextEnabled = null; - /** @var string[] See https://www.sqlite.org/lang_transaction.html */ private static $VALID_TRX_MODES = [ '', 'DEFERRED', 'IMMEDIATE', 'EXCLUSIVE' ]; @@ -291,8 +288,9 @@ class DatabaseSqlite extends Database { } /** - * Attaches external database to our connection, see https://sqlite.org/lang_attach.html - * for details. + * Attaches external database to the connection handle + * + * @see https://sqlite.org/lang_attach.html * * @param string $name Database name to be used in queries like * SELECT foo FROM dbname.table -- 2.20.1