{"id":3000,"date":"2019-12-19T01:00:43","date_gmt":"2019-12-19T01:00:43","guid":{"rendered":"https:\/\/www.canspace.ca\/blog\/?p=3000"},"modified":"2020-01-15T23:34:34","modified_gmt":"2020-01-16T04:34:34","slug":"whats-new-in-mysql-8-0","status":"publish","type":"post","link":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/","title":{"rendered":"What&#8217;s new in MySQL 8.0?"},"content":{"rendered":"<p>If you\u2019re a database administrator, the recently released MySQL 8.0 is probably the most exciting event of the year. The new version offers some significant benefits to the previous version (5.7).<\/p>\n<p>At CanSpace, we will support MySQL 8.0 as soon as it is officially supported by cPanel, which should be within a few months.<\/p>\n<p>Here are some of the features you can look forward to in MySQL 8.0:<\/p>\n<p><a href=\"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/canspace-whats-new-in-mysql-8-0-57.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-3003 size-full\" src=\"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/canspace-whats-new-in-mysql-8-0-57.jpg\" alt=\"\" width=\"1024\" height=\"512\" srcset=\"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/canspace-whats-new-in-mysql-8-0-57.jpg 1024w, https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/canspace-whats-new-in-mysql-8-0-57-300x150.jpg 300w, https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/canspace-whats-new-in-mysql-8-0-57-768x384.jpg 768w, https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/canspace-whats-new-in-mysql-8-0-57-740x370.jpg 740w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/p>\n<h2>Data dictionary<\/h2>\n<p>MySQL now incorporates a transactional data dictionary that stores information about database objects. In previous MySQL releases, dictionary data was stored in metadata files and nontransactional tables. For more information, see <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/data-dictionary.html\" target=\"_blank\" rel=\"noopener noreferrer\"> Chapter 14, MySQL Data Dictionary<\/a>.<\/p>\n<h2>Resource management<\/h2>\n<p>MySQL now supports creation and management of resource groups, and permits assigning threads running within the server to particular groups so that threads execute according to the resources available to the group.<\/p>\n<p>Group attributes enable control over its resources, to enable or restrict resource consumption by threads in the group. DBAs can modify these attributes as appropriate for different workloads. Currently, CPU time is a manageable resource, represented by the concept of \u201cvirtual CPU\u201d as a term that includes CPU cores, hyperthreads, hardware threads, and so forth. The server determines at startup how many virtual CPUs are available, and database administrators with appropriate privileges can associate these CPUs with resource groups and assign threads to groups. For more information, see <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/resource-groups.html\" target=\"_blank\" rel=\"noopener noreferrer\"> Section 8.12.5, \u201cResource Groups\u201d<\/a>.<\/p>\n<h2>Table encryption management<\/h2>\n<p>Table encryption can now be managed globally by defining and enforcing encryption defaults. The <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/server-system-variables.html#sysvar_default_table_encryption\" target=\"_blank\" rel=\"noopener noreferrer\"> default_table_encryption<\/a> variable defines an encryption default for newly created schemas and general tablespace. The encryption default for a schema can also be defined using the DEFAULT ENCRYPTION clause when creating a schema. By default, a table inherits the encryption of the schema or general tablespace it is created in. Encryption defaults are enforced by enabling the <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/server-system-variables.html#sysvar_table_encryption_privilege_check\" target=\"_blank\" rel=\"noopener noreferrer\"> table_encryption_privilege_check<\/a> variable. The privilege check occurs when creating or altering a schema or general tablespace with an encryption setting that differs from the <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/server-system-variables.html#sysvar_default_table_encryption\" target=\"_blank\" rel=\"noopener noreferrer\"> default_table_encryption<\/a> setting, or when creating or altering a table with an encryption setting that differs from the default schema encryption. The <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/privileges-provided.html#priv_table-encryption-admin\" target=\"_blank\" rel=\"noopener noreferrer\"> TABLE_ENCRYPTION_ADMIN<\/a> privilege permits overriding default encryption settings when <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/server-system-variables.html#sysvar_table_encryption_privilege_check\" target=\"_blank\" rel=\"noopener noreferrer\"> table_encryption_privilege_check<\/a> is enabled. For more information, see <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/innodb-tablespace-encryption.html#innodb-schema-tablespace-encryption-default\" target=\"_blank\" rel=\"noopener noreferrer\"> Defining an Encryption Default for Schemas and General Tablespaces<\/a>.<\/p>\n<h2>Security and account management<\/h2>\n<p>These enhancements were added to improve security and enable greater DBA flexibility in account management:<\/p>\n<ul>\n<li>The grant tables in the mysql system database are now InnoDB (transactional) tables. Previously, these were MyISAM (nontransactional) tables. The change of grant table storage engine underlies an accompanying change to the behavior of account-management statements. Previously, an account-management statement (such as <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/create-user.html\" target=\"_blank\" rel=\"noopener noreferrer\">CREATE USER<\/a> or <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/drop-user.html\" target=\"_blank\" rel=\"noopener noreferrer\"> DROP USER<\/a>) that named multiple users could succeed for some users and fail for others. Now, each statement is transactional and either succeeds for all named users or rolls back and has no effect if any error occurs. The statement is written to the binary log if it succeeds, but not if it fails; in that case, rollback occurs and no changes are made. For more information, see <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/atomic-ddl.html\" target=\"_blank\" rel=\"noopener noreferrer\"> Section 13.1.1, \u201cAtomic Data Definition Statement Support\u201d<\/a>.<\/li>\n<li>A new caching_sha2_password authentication plugin is available. Like the sha256_password plugin, caching_sha2_password implements SHA-256 password hashing, but uses caching to address latency issues at connect time. It also supports more connection protocols and does not require linking against OpenSSL for RSA key pair-based password-exchange capabilities. See <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/caching-sha2-pluggable-authentication.html\" target=\"_blank\" rel=\"noopener noreferrer\"> Section 6.4.1.2, \u201cCaching SHA-2 Pluggable Authentication\u201d<\/a>.<br \/>\nThe caching_sha2_password and sha256_password authentication plugins provide more secure password encryption than the mysql_native_password plugin, and caching_sha2_password provides better performance than sha256_password. Due to these superior security and performance characteristics of caching_sha2_password, it is now the preferred authentication plugin, and is also the default authentication plugin rather than mysql_native_password. For information about the implications of this change of default plugin for server operation and compatibility of the server with clients and connectors, see <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/upgrading-from-previous-series.html#upgrade-caching-sha2-password\" target=\"_blank\" rel=\"noopener noreferrer\"> caching_sha2_password as the Preferred Authentication Plugin<\/a>.<\/li>\n<li>MySQL now supports roles, which are named collections of privileges. Roles can be created and dropped. Roles can have privileges granted to and revoked from them. Roles can be granted to and revoked from user accounts. The active applicable roles for an account can be selected from among those granted to the account, and can be changed during sessions for that account. For more information, see <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/roles.html\" target=\"_blank\" rel=\"noopener noreferrer\"> Section 6.2.10, \u201cUsing Roles\u201d<\/a>.<\/li>\n<li>MySQL now incorporates the concept of user account categories, with system and regular users distinguished according to whether they have the <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/privileges-provided.html#priv_system-user\" target=\"_blank\" rel=\"noopener noreferrer\"> SYSTEM_USER<\/a> privilege. See <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/account-categories.html\" target=\"_blank\" rel=\"noopener noreferrer\"> Section 6.2.11, \u201cAccount Categories\u201d<\/a>.<\/li>\n<li>Previously, it was not possible to grant privileges that apply globally except for certain schemas. This is now possible if the<a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/server-system-variables.html#sysvar_partial_revokes\" target=\"_blank\" rel=\"noopener noreferrer\"> partial_revokes<\/a> system variable is enabled. See <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/partial-revokes.html\" target=\"_blank\" rel=\"noopener noreferrer\"> Section 6.2.12, \u201cPrivilege Restriction Using Partial Revokes\u201d<\/a>.<\/li>\n<li>The <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/grant.html\" target=\"_blank\" rel=\"noopener noreferrer\"> GRANT<\/a> statement has an AS user [WITH ROLE] clause that specifies additional information about the privilege context to use for statement execution. This syntax is visible at the SQL level, although its primary purpose is to enable uniform replication across all nodes of grantor privilege restrictions imposed by partial revokes, by causing those restrictions to appear in the binary log. See <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/grant.html\" target=\"_blank\" rel=\"noopener noreferrer\"> Section 13.7.1.6, \u201cGRANT Syntax\u201d<\/a>.<\/li>\n<li>MySQL now maintains information about password history, enabling restrictions on reuse of previous passwords. DBAs can require that new passwords not be selected from previous passwords for some number of password changes or period of time. It is possible to establish password-reuse policy globally as well as on a per-account basis.<br \/>\nIt is now possible to require that attempts to change account passwords be verified by specifying the current password to be replaced. This enables DBAs to prevent users from changing password without proving that they know the current password. It is possible to establish password-verification policy globally as well as on a per-account basis.<br \/>\nAccounts are now permitted to have dual passwords, which enables phased password changes to be performed seamlessly in complex multiple-server systems, without downtime.<br \/>\nThese new capabilities provide DBAs more complete control over password management. For more information, see <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/password-management.html\" target=\"_blank\" rel=\"noopener noreferrer\"> Section 6.2.15, \u201cPassword Management\u201d<\/a>.<\/li>\n<li>MySQL now supports FIPS mode, if compiled using OpenSSL, and an OpenSSL library and FIPS Object Module are available at runtime. FIPS mode imposes conditions on cryptographic operations such as restrictions on acceptable encryption algorithms or requirements for longer key lengths. See <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/fips-mode.html\" target=\"_blank\" rel=\"noopener noreferrer\"> Section 6.5, \u201cFIPS Support\u201d<\/a>.<\/li>\n<li>The SSL context the server uses for new connections now is reconfigurable at runtime. This capability may be useful, for example, to avoid restarting a MySQL server that has been running so long that its SSL certificate has expired. See <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/using-encrypted-connections.html#using-encrypted-connections-server-side-runtime-configuration\" target=\"_blank\" rel=\"noopener noreferrer\"> Server-Side Runtime Configuration for Encrypted Connections<\/a>.<\/li>\n<li>OpenSSL 1.1.1 supports the TLS v1.3 protocol for encrypted connections, and MySQL 8.0.16 and higher supports TLS v1.3 as well, if both the server and client are compiled using OpenSSL 1.1.1 or higher. See <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/encrypted-connection-protocols-ciphers.html\" target=\"_blank\" rel=\"noopener noreferrer\"> Section 6.3.2, \u201cEncrypted Connection TLS Protocols and Ciphers\u201d<\/a>.<\/li>\n<li>MySQL now sets the access control granted to clients on the named pipe to the minimum necessary for successful communication on Windows. Newer MySQL client software can open named pipe connections without any additional configuration. If older client software cannot be upgraded immediately, the new<a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/server-system-variables.html#sysvar_named_pipe_full_access_group\" target=\"_blank\" rel=\"noopener noreferrer\"> named_pipe_full_access_group<\/a> system variable can be used to give a Windows group the necessary permissions to open a named pipe connection. Membership in the full-access group should be restricted and temporary.<\/li>\n<\/ul>\n<h3>Additional new features include:<\/h3>\n<ol>\n<li>SQL Window functions, Common Table Expressions, NOWAIT and SKIP LOCKED, Descending Indexes, Grouping, Regular Expressions, Character Sets, Cost Model, and Histograms.<\/li>\n<li>JSON Extended syntax, new functions, improved sorting, and partial updates. With JSON table functions you can use the SQL machinery for JSON data.<\/li>\n<li>GIS Geography support. Spatial Reference Systems (SRS), as well as SRS aware spatial datatypes,\u00a0 spatial indexes, and spatial functions.<\/li>\n<li>Reliability DDL statements have become atomic and crash safe, meta-data is stored in a single, transactional data dictionary. Powered by InnoDB!<\/li>\n<li>Observability Significant enhancements to Performance Schema, Information Schema, Configuration Variables, and Error Logging.<\/li>\n<li>Manageability Remote management, Undo tablespace management, and new instant DDL.<\/li>\n<li>Security OpenSSL improvements, new default authentication, SQL Roles, breaking up the super privilege, password strength, and more.<\/li>\n<li>Performance InnoDB is significantly better at Read\/Write workloads, IO bound workloads, and high contention \u201chot spot\u201d workloads. Added Resource Group feature to give users an option optimize for specific workloads on specific hardware by mapping user threads to CPUs.<\/li>\n<\/ol>\n<p>Clearly, there are a ton of new features in MySQL 8.0 that users of all skill levels will appreciate. We will send around an update on social media as soon as cPanel officially supports MySQL and you can use it on your CanSpace servers!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you\u2019re a database administrator, the recently released MySQL 8.0 is probably the most exciting event of the year. The new version offers some significant benefits to the previous version (5.7). At CanSpace, we will support MySQL 8.0 as soon as it is officially supported by cPanel, which should be within a few months. Here [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3005,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"client_name":"","client_title":"","client_company_name":"","client_url":"","client_quote":"","footnotes":""},"categories":[135,138],"tags":[],"class_list":["post-3000","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-hosting-servers","category-news"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What&#039;s new in MySQL 8.0? - Canada&#039;s Leading Web Hosting and Domain Name Provider<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What&#039;s new in MySQL 8.0? - Canada&#039;s Leading Web Hosting and Domain Name Provider\" \/>\n<meta property=\"og:description\" content=\"If you\u2019re a database administrator, the recently released MySQL 8.0 is probably the most exciting event of the year. The new version offers some significant benefits to the previous version (5.7). At CanSpace, we will support MySQL 8.0 as soon as it is officially supported by cPanel, which should be within a few months. Here [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/\" \/>\n<meta property=\"og:site_name\" content=\"Canada&#039;s Leading Web Hosting and Domain Name Provider\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/canspace.ca\" \/>\n<meta property=\"article:published_time\" content=\"2019-12-19T01:00:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-01-16T04:34:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/coding-computer-data-depth-of-field-577585.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1258\" \/>\n\t<meta property=\"og:image:height\" content=\"778\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"CanSpace Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@canspace_ca\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CanSpace Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/\"},\"author\":{\"name\":\"CanSpace Team\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#\\\/schema\\\/person\\\/6bf91c438b083753bbb7d2736141a6bb\"},\"headline\":\"What&#8217;s new in MySQL 8.0?\",\"datePublished\":\"2019-12-19T01:00:43+00:00\",\"dateModified\":\"2020-01-16T04:34:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/\"},\"wordCount\":1433,\"publisher\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/coding-computer-data-depth-of-field-577585.jpg\",\"articleSection\":[\"Hosting and Servers\",\"News\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/\",\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/\",\"name\":\"What's new in MySQL 8.0? - Canada&#039;s Leading Web Hosting and Domain Name Provider\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/coding-computer-data-depth-of-field-577585.jpg\",\"datePublished\":\"2019-12-19T01:00:43+00:00\",\"dateModified\":\"2020-01-16T04:34:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/coding-computer-data-depth-of-field-577585.jpg\",\"contentUrl\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/coding-computer-data-depth-of-field-577585.jpg\",\"width\":1258,\"height\":778},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-new-in-mysql-8-0\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What&#8217;s new in MySQL 8.0?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/\",\"name\":\"Canada&#039;s Leading Web Hosting and Domain Name Provider\",\"description\":\"Canada&#039;s Leading Domain Registrar and Web Hosting Provider\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#organization\",\"name\":\"CanSpace Solutions\",\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/11\\\/logolargesize.png\",\"contentUrl\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/11\\\/logolargesize.png\",\"width\":2200,\"height\":709,\"caption\":\"CanSpace Solutions\"},\"image\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#\\\/schema\\\/person\\\/6bf91c438b083753bbb7d2736141a6bb\",\"name\":\"CanSpace Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g\",\"caption\":\"CanSpace Team\"},\"description\":\"CanSpace Solutions is Canada's leading domain name registrar and web hosting provider. Keep an eye on our blog for expert information on domain names, websites, and running a business online.\",\"sameAs\":[\"https:\\\/\\\/www.canspace.ca\",\"https:\\\/\\\/www.facebook.com\\\/canspace.ca\",\"https:\\\/\\\/ca.linkedin.com\\\/company\\\/canspace\",\"https:\\\/\\\/x.com\\\/canspace_ca\"],\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What's new in MySQL 8.0? - Canada&#039;s Leading Web Hosting and Domain Name Provider","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/","og_locale":"en_US","og_type":"article","og_title":"What's new in MySQL 8.0? - Canada&#039;s Leading Web Hosting and Domain Name Provider","og_description":"If you\u2019re a database administrator, the recently released MySQL 8.0 is probably the most exciting event of the year. The new version offers some significant benefits to the previous version (5.7). At CanSpace, we will support MySQL 8.0 as soon as it is officially supported by cPanel, which should be within a few months. Here [&hellip;]","og_url":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/","og_site_name":"Canada&#039;s Leading Web Hosting and Domain Name Provider","article_author":"https:\/\/www.facebook.com\/canspace.ca","article_published_time":"2019-12-19T01:00:43+00:00","article_modified_time":"2020-01-16T04:34:34+00:00","og_image":[{"width":1258,"height":778,"url":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/coding-computer-data-depth-of-field-577585.jpg","type":"image\/jpeg"}],"author":"CanSpace Team","twitter_card":"summary_large_image","twitter_creator":"@canspace_ca","twitter_misc":{"Written by":"CanSpace Team","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/#article","isPartOf":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/"},"author":{"name":"CanSpace Team","@id":"https:\/\/www.canspace.ca\/blog\/#\/schema\/person\/6bf91c438b083753bbb7d2736141a6bb"},"headline":"What&#8217;s new in MySQL 8.0?","datePublished":"2019-12-19T01:00:43+00:00","dateModified":"2020-01-16T04:34:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/"},"wordCount":1433,"publisher":{"@id":"https:\/\/www.canspace.ca\/blog\/#organization"},"image":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/#primaryimage"},"thumbnailUrl":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/coding-computer-data-depth-of-field-577585.jpg","articleSection":["Hosting and Servers","News"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/","url":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/","name":"What's new in MySQL 8.0? - Canada&#039;s Leading Web Hosting and Domain Name Provider","isPartOf":{"@id":"https:\/\/www.canspace.ca\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/#primaryimage"},"image":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/#primaryimage"},"thumbnailUrl":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/coding-computer-data-depth-of-field-577585.jpg","datePublished":"2019-12-19T01:00:43+00:00","dateModified":"2020-01-16T04:34:34+00:00","breadcrumb":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/#primaryimage","url":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/coding-computer-data-depth-of-field-577585.jpg","contentUrl":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2019\/12\/coding-computer-data-depth-of-field-577585.jpg","width":1258,"height":778},{"@type":"BreadcrumbList","@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-new-in-mysql-8-0\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/www.canspace.ca\/blog\/"},{"@type":"ListItem","position":2,"name":"What&#8217;s new in MySQL 8.0?"}]},{"@type":"WebSite","@id":"https:\/\/www.canspace.ca\/blog\/#website","url":"https:\/\/www.canspace.ca\/blog\/","name":"Canada&#039;s Leading Web Hosting and Domain Name Provider","description":"Canada&#039;s Leading Domain Registrar and Web Hosting Provider","publisher":{"@id":"https:\/\/www.canspace.ca\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.canspace.ca\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.canspace.ca\/blog\/#organization","name":"CanSpace Solutions","url":"https:\/\/www.canspace.ca\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.canspace.ca\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2016\/11\/logolargesize.png","contentUrl":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2016\/11\/logolargesize.png","width":2200,"height":709,"caption":"CanSpace Solutions"},"image":{"@id":"https:\/\/www.canspace.ca\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.canspace.ca\/blog\/#\/schema\/person\/6bf91c438b083753bbb7d2736141a6bb","name":"CanSpace Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g","caption":"CanSpace Team"},"description":"CanSpace Solutions is Canada's leading domain name registrar and web hosting provider. Keep an eye on our blog for expert information on domain names, websites, and running a business online.","sameAs":["https:\/\/www.canspace.ca","https:\/\/www.facebook.com\/canspace.ca","https:\/\/ca.linkedin.com\/company\/canspace","https:\/\/x.com\/canspace_ca"],"url":"https:\/\/www.canspace.ca\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/posts\/3000","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/comments?post=3000"}],"version-history":[{"count":5,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/posts\/3000\/revisions"}],"predecessor-version":[{"id":3066,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/posts\/3000\/revisions\/3066"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/media\/3005"}],"wp:attachment":[{"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/media?parent=3000"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/categories?post=3000"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/tags?post=3000"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}