WordPress Version: 5.3
/**
* Checks the version of the installed MySQL binary.
*
* @since 2.1.0
*
* @global wpdb $wpdb WordPress database abstraction object.
*/
function wp_check_mysql_version()
{
global $wpdb;
$result = $wpdb->check_database_version();
if (is_wp_error($result)) {
wp_die($result);
}
}