From 2f53c1ada2d0c3a0541c131778c3e64fae4e980c Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Mon, 21 Dec 2015 22:27:25 +0000 Subject: [PATCH] Tests: Use the `default_storage_engine` MySQL option on newer MySQL versions. In MySQL 5.5.3, `storage_engine` was deprecated in favour of `default_storage_engine`, and subsequently removed in MySQL 5.7. To avoid errors when running tests on MySQL 5.7, we need to switch between the options based on MySQL version. Props skithund, jeremyfelt. Fixes #34692. Built from https://develop.svn.wordpress.org/trunk@36055 git-svn-id: http://core.svn.wordpress.org/trunk@36020 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 c103feaa64..7d2e71bcd0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36054'; +$wp_version = '4.5-alpha-36055'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.