Add drop of mssql/oracle to RELEASE-NOTES
authorAmir Sarabadani <Ladsgroup@gmail.com>
Wed, 14 Aug 2019 19:47:06 +0000 (21:47 +0200)
committerJames D. Forrester <jforrester@wikimedia.org>
Wed, 14 Aug 2019 20:14:20 +0000 (22:14 +0200)
Bug: T230418
Change-Id: Ie7771853048a27a8d8ee75764229e6e34477cd04

RELEASE-NOTES-1.34
tests/phpunit/includes/db/LoadBalancerTest.php

index 5e4f61d..69a64d0 100644 (file)
@@ -340,6 +340,8 @@ because of Phabricator reports.
 * Database::getProperty(), deprecated in 1.28, has been removed.
 * IDatabase::getWikiId(), deprecated in 1.30, has been removed.
   Use IDatabase::getDomainID() instead.
+* (T191231) Support for using Oracle or MSSQL as database backends has been
+  dropped.
 * …
 
 === Deprecations in 1.34 ===
index 588fe67..981b4ad 100644 (file)
@@ -341,7 +341,7 @@ class LoadBalancerTest extends MediaWikiTestCase {
        private function assertWriteAllowed( Database $db ) {
                $table = $db->tableName( 'some_table' );
                // Trigger a transaction so that rollback() will remove all the tables.
-               // Don't do this for MySQL as they auto-commit transactions for DDL
+               // Don't do this for MySQL as it auto-commits transactions for DDL
                // statements such as CREATE TABLE.
                $useAtomicSection = in_array( $db->getType(), [ 'sqlite', 'postgres' ], true );
                try {