mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-09 07:00:01 +00:00
Upgrades: If a table has already been converted to utf8mb4
, there's no need to try and convert it again.
Props gabrielperezs for the initial patch. See #32310. Built from https://develop.svn.wordpress.org/trunk@32456 git-svn-id: http://core.svn.wordpress.org/trunk@32426 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
837fd1ca10
commit
02621f2a14
@ -1751,6 +1751,17 @@ function maybe_convert_table_to_utf8mb4( $table ) {
|
||||
}
|
||||
}
|
||||
|
||||
$table_details = $wpdb->get_row( "SHOW TABLE STATUS LIKE '$table'" );
|
||||
if ( ! $table_details ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
list( $table_charset ) = explode( '_', $table_details->Collation );
|
||||
$table_charset = strtolower( $table_charset );
|
||||
if ( 'utf8mb4' === $table_charset ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return $wpdb->query( "ALTER TABLE $table CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci" );
|
||||
}
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32455';
|
||||
$wp_version = '4.3-alpha-32456';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
x
Reference in New Issue
Block a user