{"id":14445,"date":"2020-07-24T16:12:55","date_gmt":"2020-07-24T14:12:55","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/"},"modified":"2020-07-24T16:12:55","modified_gmt":"2020-07-24T14:12:55","slug":"changes-that-i-like-in-the-new-mysql-8-0-21","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/","title":{"rendered":"Changes that I like in the new MySQL 8.0.21"},"content":{"rendered":"<p>A new release of MySQL was out on July 13 (<a href=\"https:\/\/dev.mysql.com\/doc\/relnotes\/mysql\/8.0\/en\/news-8-0-21.html\" target=\"_blank\" rel=\"noopener noreferrer\">8.0.21<\/a>).<br \/>\nAmong all the changes, there are some that I have already tested and that I really appreciate.<br \/>\n<!--more--><\/p>\n<h2>Who stopped the MySQL server?<\/h2>\n<p>In previous releases, I can already see in the error log file who stopped the MySQL server if this was done through the shutdown statement.<br \/>\nIn MySQL 8.0.20:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\nmysql&gt; shutdown;\nQuery OK, 0 rows affected (0.00 sec)\nmysql&gt; exit;\nBye\n# tail -2 \/u01\/app\/mysql\/admin\/mysqld2\/log\/mysqld2.err\n2020-07-23T20:39:08.049064+02:00 9 [System] [MY-013172] [Server] Received SHUTDOWN from user root. Shutting down mysqld (Version: 8.0.20).\n2020-07-23T20:39:09.796726+02:00 0 [System] [MY-010910] [Server] \/u01\/app\/mysql\/product\/mysql-8.0.20\/bin\/mysqld: Shutdown complete (mysqld 8.0.20)  MySQL Community Server - GPL.\n<\/pre>\n<p>In MySQL 8.0.21:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\nmysql&gt; shutdown;\nQuery OK, 0 rows affected (0.00 sec)\nmysql&gt; exit;\nBye\n# tail -2 \/u01\/app\/mysql\/admin\/mysqld1\/log\/mysqld1.err\n2020-07-23T20:39:15.725223+02:00 9 [System] [MY-013172] [Server] Received SHUTDOWN from user root. Shutting down mysqld (Version: 8.0.21).\n2020-07-23T20:39:17.029262+02:00 0 [System] [MY-010910] [Server] \/u01\/app\/mysql\/product\/mysql-8.0.21\/bin\/mysqld: Shutdown complete (mysqld 8.0.21)  MySQL Community Server - GPL.\n<\/pre>\n<p>But when the server was stopped through the systemctl command, this information was lost:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\n# systemctl stop mysqld\n# tail -2 \/u01\/app\/mysql\/admin\/mysqld2\/log\/mysqld2.err\n2020-07-23T20:56:23.488468+02:00 0 [ERROR] [MY-010119] [Server] Aborting\n2020-07-23T20:56:23.489010+02:00 0 [System] [MY-010910] [Server] \/u01\/app\/mysql\/product\/mysql-8.0.20\/bin\/mysqld: Shutdown complete (mysqld 8.0.20)  MySQL Community Server - GPL.\n<\/pre>\n<p>As of MySQL 8.0.21, the error log file traces who stopped the MySQL server in any case (except if you are using the kill -9 command):<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\n# systemctl stop mysqld\n# tail -2 \/u01\/app\/mysql\/admin\/mysqld1\/log\/mysqld1.err\n2020-07-23T21:01:00.731589+02:00 0 [System] [MY-013172] [Server] Received SHUTDOWN from user . Shutting down mysqld (Version: 8.0.21).\n2020-07-23T21:01:01.560078+02:00 0 [System] [MY-010910] [Server] \/u01\/app\/mysql\/product\/mysql-8.0.21\/bin\/mysqld: Shutdown complete (mysqld 8.0.21)  MySQL Community Server - GPL.\n<\/pre>\n<h2>How can I enable\/disable redo logging?<\/h2>\n<p>This is a nice but dangerous feature. Disable redo logging can be interesting when creating a new instance to avoid wasting time during redo log writes and doublewrite buffering operations. But otherwise don&#8217;t do that in your production environment!<br \/>\nCheck if redo logging is enabled:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\nmysql&gt; SHOW GLOBAL STATUS LIKE 'Innodb_redo_log_enabled';\n+-------------------------+-------+\n| Variable_name           | Value |\n+-------------------------+-------+\n| Innodb_redo_log_enabled | ON    |\n+-------------------------+-------+\n<\/pre>\n<p>Create an user account with permissions to execute these operations:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\nmysql&gt; GRANT INNODB_REDO_LOG_ENABLE ON *.* to 'load'@'localhost';\n<\/pre>\n<p>Connect to the MySQL server with the <em>load<\/em> user and disable redo logging:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\nmysql&gt; ALTER INSTANCE DISABLE INNODB REDO_LOG;\nmysql&gt; SHOW GLOBAL STATUS LIKE 'Innodb_redo_log_enabled';\n+-------------------------+-------+\n| Variable_name           | Value |\n+-------------------------+-------+\n| Innodb_redo_log_enabled | OFF   |\n+-------------------------+-------+\n<\/pre>\n<p>You can now load your data into the system, then enable again redo logging:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\nmysql&gt; ALTER INSTANCE ENABLE INNODB REDO_LOG;\nmysql&gt; SHOW GLOBAL STATUS LIKE 'Innodb_redo_log_enabled';\n+-------------------------+-------+\n| Variable_name           | Value |\n+-------------------------+-------+\n| Innodb_redo_log_enabled | ON    |\n+-------------------------+-------+\n<\/pre>\n<h2>What if we add attributes and comments to MySQL user accounts?<\/h2>\n<p>As of MySQL 8.0.21, we can add attributes as a JSON object and comments during the creation of MySQL user accounts.<br \/>\nA comment:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\nmysql&gt; CREATE USER 'backup'@'localhost' identified by 'Supercal1frag1l1st1cexp1al1doc10us!' COMMENT 'This is the user account used to backup the MySQL server';\nmysql&gt; select User, Host, User_attributes from mysql.user\n    -&gt; where User='backup';\n+--------+-----------+---------------------------------------------------------------------------------------+\n| User   | Host      | User_attributes                                                                       |\n+--------+-----------+---------------------------------------------------------------------------------------+\n| backup | localhost | {\"metadata\": {\"comment\": \"This is the user account used to backup the MySQL server\"}} |\n+--------+-----------+---------------------------------------------------------------------------------------+\nmysql&gt; select * from INFORMATION_SCHEMA.USER_ATTRIBUTES \n   -&gt; where USER='backup';\n+--------+-----------+-------------------------------------------------------------------------+\n| USER   | HOST      | ATTRIBUTE                                                               |\n+--------+-----------+-------------------------------------------------------------------------+\n| backup | localhost | {\"comment\": \"This is the user account used to backup the MySQL server\"} |\n+--------+-----------+-------------------------------------------------------------------------+\n<\/pre>\n<p>An attribute:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">\nmysql&gt; CREATE USER 'elisa'@'localhost' identified by 'CatchMe1fY0uCan!' ATTRIBUTE '{\"LastName\": \"Usai\", \"FirstName\": \"Elisa\", \"Email\": \"elisa.usai@dbi-services.com\", \"Department\": \"DBA Team\"}';\nmysql&gt; select User, Host, User_attributes from mysql.user\n    -&gt; where User='elisa';\n+-------+-----------+----------------------------------------------------------------------------------------------------------------------------+\n| User  | Host      | User_attributes                                                                                                            |\n+-------+-----------+----------------------------------------------------------------------------------------------------------------------------+\n| elisa | localhost | {\"metadata\": {\"Email\": \"elisa.usai@dbi-services.com\", \"LastName\": \"Usai\", \"FirstName\": \"Elisa\", \"Department\": \"DBA Team\"}} |\n+-------+-----------+----------------------------------------------------------------------------------------------------------------------------+\nmysql&gt; select * from INFORMATION_SCHEMA.USER_ATTRIBUTES\n   -&gt; where User='elisa';\n+-------+-----------+--------------------------------------------------------------------------------------------------------------+\n| USER  | HOST      | ATTRIBUTE                                                                                                    |\n+-------+-----------+--------------------------------------------------------------------------------------------------------------+\n| elisa | localhost | {\"Email\": \"elisa.usai@dbi-services.com\", \"LastName\": \"Usai\", \"FirstName\": \"Elisa\", \"Department\": \"DBA Team\"} |\n+-------+-----------+--------------------------------------------------------------------------------------------------------------+\nmysql&gt; select user as User,\n    -&gt; host as Host,\n    -&gt; concat(attribute-&gt;&gt;\"$.LastName\",\" \",attribute-&gt;&gt;\"$.FirstName\") as 'Name',\n    -&gt; attribute-&gt;&gt;\"$.Department\" as Department,\n    -&gt; attribute-&gt;&gt;\"$.Email\" as Email\n    -&gt; from INFORMATION_SCHEMA.USER_ATTRIBUTES\n    -&gt; where user='elisa';\n+-------+-----------+------------+------------+-----------------------------+\n| User  | Host      | Name       | Department | Email                       |\n+-------+-----------+------------+------------+-----------------------------+\n| elisa | localhost | Usai Elisa | DBA Team   | elisa.usai@dbi-services.com |\n+-------+-----------+------------+------------+-----------------------------+\n<\/pre>\n<h2>Check your backups execution!<\/h2>\n<p>With the MySQL 8.0.21 release, your backup through mysqldump could fail with the following error:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\"> \n# mysqldump --all-databases --user=backup --password &gt; test.sql\nEnter password:\nmysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces\nmysql&gt; show grants for backup@localhost;\n+------------------------------------------------------------------------------+\n| Grants for backup@localhost                                                  |\n+------------------------------------------------------------------------------+\n| GRANT SELECT, LOCK TABLES, SHOW VIEW, TRIGGER ON *.* TO `backup`@`localhost` |\n+------------------------------------------------------------------------------+\n<\/pre>\n<p>Why? Actually in the new release the INFORMATION_SCHEMA.FILES table requires by now the PROCESS privilege and this change has an impact on mysqldump operations:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\"> \nmysql&gt; grant PROCESS ON *.* TO `backup`@`localhost`;\nQuery OK, 0 rows affected (0.02 sec)\n# mysqldump --all-databases --user=backup --password &gt; test.sql\nEnter password:\n<\/pre>\n<p>And as usual, stay tuned with MySQL! \ud83d\ude42<br \/>\nby <a href=\"https:\/\/www.linkedin.com\/in\/elisausai\/\" target=\"_blank\" rel=\"noopener noreferrer\">Elisa Usai<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A new release of MySQL was out on July 13 (8.0.21). Among all the changes, there are some that I have already tested and that I really appreciate.<\/p>\n","protected":false},"author":42,"featured_media":14446,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229,1316],"tags":[2041,694,144,282],"type_dbi":[],"class_list":["post-14445","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-administration-monitoring","category-mysql","tag-innodb","tag-json","tag-mysql","tag-redo-log"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Changes that I like in the new MySQL 8.0.21 - dbi Blog<\/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.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Changes that I like in the new MySQL 8.0.21\" \/>\n<meta property=\"og:description\" content=\"A new release of MySQL was out on July 13 (8.0.21). Among all the changes, there are some that I have already tested and that I really appreciate.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-24T14:12:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/1-8.png\" \/>\n\t<meta property=\"og:image:width\" content=\"805\" \/>\n\t<meta property=\"og:image:height\" content=\"165\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Elisa Usai\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Elisa Usai\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/\"},\"author\":{\"name\":\"Elisa Usai\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ac5847ee8d7bad4196e72660c1377b1f\"},\"headline\":\"Changes that I like in the new MySQL 8.0.21\",\"datePublished\":\"2020-07-24T14:12:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/\"},\"wordCount\":286,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/1-8.png\",\"keywords\":[\"innodb\",\"json\",\"MySQL\",\"Redo log\"],\"articleSection\":[\"Database Administration &amp; Monitoring\",\"MySQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/\",\"name\":\"Changes that I like in the new MySQL 8.0.21 - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/1-8.png\",\"datePublished\":\"2020-07-24T14:12:55+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ac5847ee8d7bad4196e72660c1377b1f\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/1-8.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/1-8.png\",\"width\":805,\"height\":165},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Changes that I like in the new MySQL 8.0.21\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ac5847ee8d7bad4196e72660c1377b1f\",\"name\":\"Elisa Usai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g\",\"caption\":\"Elisa Usai\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/elisa-usai\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Changes that I like in the new MySQL 8.0.21 - dbi Blog","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.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/","og_locale":"en_US","og_type":"article","og_title":"Changes that I like in the new MySQL 8.0.21","og_description":"A new release of MySQL was out on July 13 (8.0.21). Among all the changes, there are some that I have already tested and that I really appreciate.","og_url":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/","og_site_name":"dbi Blog","article_published_time":"2020-07-24T14:12:55+00:00","og_image":[{"width":805,"height":165,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/1-8.png","type":"image\/png"}],"author":"Elisa Usai","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Elisa Usai","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/"},"author":{"name":"Elisa Usai","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ac5847ee8d7bad4196e72660c1377b1f"},"headline":"Changes that I like in the new MySQL 8.0.21","datePublished":"2020-07-24T14:12:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/"},"wordCount":286,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/1-8.png","keywords":["innodb","json","MySQL","Redo log"],"articleSection":["Database Administration &amp; Monitoring","MySQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/","url":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/","name":"Changes that I like in the new MySQL 8.0.21 - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/1-8.png","datePublished":"2020-07-24T14:12:55+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ac5847ee8d7bad4196e72660c1377b1f"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/1-8.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/1-8.png","width":805,"height":165},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/changes-that-i-like-in-the-new-mysql-8-0-21\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Changes that I like in the new MySQL 8.0.21"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ac5847ee8d7bad4196e72660c1377b1f","name":"Elisa Usai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d41c7e94b7e4cd42bdcc5b82003c00562de8da0cf0a1081fbe832d47e3a828ff?s=96&d=mm&r=g","caption":"Elisa Usai"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/elisa-usai\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/14445","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/42"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=14445"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/14445\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/14446"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=14445"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=14445"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=14445"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=14445"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}