From 80fd3cad0df016fd5d5ac2b2f877fbc488e56c07 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Tue, 10 Oct 2017 23:46:47 +0000 Subject: [PATCH] Database: Fix a test failing on MySQL 5.7 and MariaDB 10.2. On newer versions of MySQL, an error was being thrown when creating a table with an index that we wanted to be silently truncated. To avoid this, the test now tries to use a newer InnoDB file format where available, and skips the test when that happens. Props pento, danielbachhuber, straussd. Fixes #41716. Built from https://develop.svn.wordpress.org/trunk@41818 git-svn-id: http://core.svn.wordpress.org/trunk@41652 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 391cfdf2fc..dcddc4b07b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-beta1-41817'; +$wp_version = '4.9-beta1-41818'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.