From 0561e81ecc5055c42589131c752ee9b2b35fe60e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 5 Feb 2020 04:30:04 +0000 Subject: [PATCH] Tests: Allow `dbDelta()` tests to (mostly) run on MySQL 8.0.11+. * MySQL 8.0.11 changed the `GeometryCollection` data type name to `GeomCollection`, with the latter being the preferred name. * MySQL 8.0.17 removed support for the display width attribute for integer data types. Previously, default display width of 20 digits was used: `BIGINT(20)`. The affected tests now check the MySQL server version and use the appropriate data types. This leaves one unresolved failure on MySQL 8.0.17+ to be addressed in the future, caused by the same `BIGINT` display width discrepancy coming from `wp_get_db_schema()`. Props kaggdesign, ottok, jeremyfelt, SergeyBiryukov. Fixes #44384, #49344. See #49364. Built from https://develop.svn.wordpress.org/trunk@47184 git-svn-id: http://core.svn.wordpress.org/trunk@46984 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 662a50a952..b347066c5e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47183'; +$wp_version = '5.4-alpha-47184'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.