MySQL 8.0.3 is about to be released. Let’s take a look at what’s new MySQL 8.0.3 is about to release the RC version, which means that version 8.0 is getting closer to GA. Here are some important new features and changes in version 8.0.3: 1. Directly abolish query cache (it should just close the entrance. If you compile the source code yourself, you can enable it again) 2. The query optimizer supports modifying certain session-level options directly in SQL using the SET_VAR HINT syntax, such as: - SELECT /*+ SET_VAR (sort_buffer_size = 16M) */ name FROM people ORDER BY name; - INSERT /*+ SET_VAR (foreign_key_checks=OFF) */ INTO t2 VALUES (2); (This feature is super practical. You can modify it directly in SQL without having to write another SQL and worry about affecting others) 3. The query optimizer now supports storing the histogram of each column's statistical results in the column_statistics data dictionary to facilitate the construction of the execution plan. With this histogram, we can compare the column with the constant. 4. A new flag, use_invisible_indexes, is added to the query optimizer to control whether invisible indexes are considered when constructing the execution plan. 5. InnoDB adds a backup lock. Previously, if DML was performed simultaneously during online hot backup of InnoDB tables, the snapshot of the InnoDB file might be inconsistent. With this backup lock, you don't have to worry about this. The backup lock usage is LOCK INSTANCE FOR BACKUP, UNLOCK INSTANCE, which requires the BACKUP_ADMIN permission. 6. InnoDB now supports atomicity of table DDL, which means that DDL on InnoDB tables can also achieve transaction integrity, either rollback if failed or commit successfully, so there will be no problem of partial success of DDL. In addition, it also supports crash-safe feature (this feature is great) 7. If Group Replication (GR) is initialized late, that is, in single-primary mode, data can be written to the secondary node through the asynchronous replication channel, which is not allowed when the Group Replication plugin is initialized normally (Bug #26314756, this is an internal BUG ID, we can't see it, don't bother. But there is also the almighty github, where you can also see the relevant description, see: https://github.com/mysql/mysql-server/commit/acbf1d13ecd1d89557f8ca62116f06e8633dc90d) 8. Several views such as FILES, PARTITIONS, REFERENTIAL_CONSTRAINTS in the system library INFORMATION_SCHEMA have been re-implemented (this is not too specific, it may be related to the fact that all DDLs are placed in InnoDB, and FRM files are no longer used to store DDL information) 9. Due to the modification of foreign key constraint lock function, the column renaming function on the parent table involving foreign key constraints will be temporarily disabled for a period of time (it is estimated that it will be able to be used normally after a few minor versions) 10. New renaming syntax for InnoDB general tablespace: ALTER TABLESPACE ... RENAME TO (As a MySQL DBA, it seems that few people use general tablespaces. Maybe they are more used to it after switching from Oracle DBA) 11. On the slave node of MySQL replication, the default value of the log_slave_updates option is changed to ON (this is also quite practical, and it is convenient to use the slave directly as a relay node) 12. The global scope of the option sql_log_bin has been changed to the session scope, that is, changing this option only affects this session and no longer affects the global scope (this option is generally used at the session level) 13. The default value of option max_allowed_packet is increased from 4M to 64M (this seems more realistic) 14. The default value of the option event_scheduler is changed from OFF to ON, so that the event scheduler function is enabled by default (I think the event function is very good, but it seems that few people use events) 15. The default value of option max_error_count has been increased from 64 to 1024 (I don't think so) 16. The last one, the utf8mb4 character set adds a Russian checksum (two new collations sets: utf8mb4_ru_0900_ai_ci and utf8mb4_ru_0900_as_cs) Let’s look forward to the release of 8.0.3! You may also be interested in:
|
<<: How to Fix File System Errors in Linux Using ‘fsck’
>>: Encapsulate a simplest ErrorBoundary component to handle react exceptions
1. Percentage basis for element width/height/padd...
OOM stands for "Out Of Memory", which m...
This article example shares the specific code of ...
Select the category selection. After testing, IE ...
The reason why Docker is so popular nowadays is m...
Table of contents jQuery's $.ajax The beginni...
The nginx configuration file is mainly divided in...
ask: I have styled the hyperlink using CSS, but i...
Table of contents Audio transcoding tools princip...
background When performing a SQL query, I tried t...
MySQL installation (4, 5, 6 can be omitted) State...
1. The Chinese garbled characters appear in MySQL...
There are many tasks to be done in search engine o...
This article records the installation and configu...
The experimental environment is as follows Here y...