MySQL8.0.33 GA 简介

2023-08-04 12:22:35 浏览数 (1)

MySQL8.0.33 于4月18日正式GA。重要改进功能如下: 1、INSTALL COMPAONENT 支持set子句。

代码语言:javascript复制
INSTALL COMPONENT component_name  [, component_name ...
     [SET variable = expr [, variable = expr] ...] 
  
  variable: {
    {GLOBAL | @@GLOBAL.} [component_prefix.]system_var_name
  | {PERSIST | @@PERSIST.} [component_prefix.]system_var_name
}

例子:

代码语言:javascript复制
INSTALL COMPONENT 'file://component1', 'file://component2' 
    SET GLOBAL component1.var1 = 12   3, PERSIST component2.var2 = 'strings';

2、用户自定义排序规则现已被弃用。 3、performance schema中增加服务器遥测跟踪服务。它提供了一个接口,使插件和组件能够检索与SQL语句生命周期相关的通知。 4、内置集成的openssl库更新至openssl1.1.1t版本(安全bug修复)。 5、Innodb:支持并行构建索引。 6、"master"、"slave","MTS"等命令被"source", "replica","MTA"替代。 7、复制:mysqlbinlog --start-position 现在接受的值最大为18446744073709551615,除非使用 --read-from-remote-server 或 --read-from-remote-source 选项,此时最大值为4294967295。 8、二进制包包含curl,而不是依赖系统库,curl现在的版本是7.88.1.(安全bug修复).

0 人点赞