Page MenuHomePhorge

No OneTemporary

Size
2 KB
Referenced Files
None
Subscribers
None
diff --git a/RELEASE-NOTES-1.44 b/RELEASE-NOTES-1.44
index 51fdc6dfc21..fd6d72fe4a1 100644
--- a/RELEASE-NOTES-1.44
+++ b/RELEASE-NOTES-1.44
@@ -170,6 +170,8 @@ For notes on 1.43.x and older releases, see HISTORY.
===== Changed development-only external libraries =====
* Updated api-testing to 1.6.0 to 1.7.1.
+* Updated doctrine/dbal from 3.8.4 to 3.9.4.
+* Updated doctrine/sql-formatter from 1.1.3 to 1.3.0.
* Updated eslint-config-wikimedia from 0.28.2 to 0.29.1.
* Updated mediawiki/mediawiki-phan-config from 0.14.0 to 0.15.0.
* Updated nikic/php-parser from ^4.10.2 to ^5.3.1.
diff --git a/composer.json b/composer.json
index ba74289bb9c..e7f6e1aa5f3 100644
--- a/composer.json
+++ b/composer.json
@@ -88,8 +88,8 @@
},
"require-dev": {
"composer/spdx-licenses": "1.5.8",
- "doctrine/dbal": "3.8.4",
- "doctrine/sql-formatter": "1.1.3",
+ "doctrine/dbal": "3.9.4",
+ "doctrine/sql-formatter": "1.3.0",
"ext-simplexml": "*",
"giorgiosironi/eris": "^0.14.0",
"hamcrest/hamcrest-php": "^2.0",
diff --git a/sql/sqlite/patch-page-drop-page_restrictions.sql b/sql/sqlite/patch-page-drop-page_restrictions.sql
index e21c06a34fe..bde0741f7d6 100644
--- a/sql/sqlite/patch-page-drop-page_restrictions.sql
+++ b/sql/sqlite/patch-page-drop-page_restrictions.sql
@@ -2,7 +2,7 @@
-- Source: sql/abstractSchemaChanges/patch-page-drop-page_restrictions.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
-CREATE TEMPORARY TABLE /*_*/__temp__page AS
+CREATE TEMPORARY TABLE /*_*/__temp__PAGE AS
SELECT
page_id,
page_namespace,
@@ -53,8 +53,8 @@ SELECT
page_content_model,
page_lang
FROM
- /*_*/__temp__page;
-DROP TABLE /*_*/__temp__page;
+ /*_*/__temp__PAGE;
+DROP TABLE /*_*/__temp__PAGE;
CREATE UNIQUE INDEX page_name_title ON /*_*/page (page_namespace, page_title);
diff --git a/sql/sqlite/patch-page-rename-name_title-index.sql b/sql/sqlite/patch-page-rename-name_title-index.sql
index 5bcd56225c2..7a8c210ce40 100644
--- a/sql/sqlite/patch-page-rename-name_title-index.sql
+++ b/sql/sqlite/patch-page-rename-name_title-index.sql
@@ -2,7 +2,7 @@
-- Source: sql/abstractSchemaChanges/patch-page-rename-name_title-index.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
-CREATE TEMPORARY TABLE /*_*/__temp__page AS
+CREATE TEMPORARY TABLE /*_*/__temp__PAGE AS
SELECT
page_id,
page_namespace,
@@ -53,8 +53,8 @@ SELECT
page_content_model,
page_lang
FROM
- /*_*/__temp__page;
-DROP TABLE /*_*/__temp__page;
+ /*_*/__temp__PAGE;
+DROP TABLE /*_*/__temp__PAGE;
CREATE INDEX page_random ON /*_*/page (page_random);

File Metadata

Mime Type
text/x-diff
Expires
Sat, Jul 5, 5:32 AM (12 h, 50 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
227517
Default Alt Text
(2 KB)

Event Timeline