[Release Note] MariaDB 10.11.11
MariaDB 10.11.11 Release Notes (2025-02-04)
InnoDB
- MDEV-35409 : Fix possible InnoDB hang while running out of buffer pool
buffer pool 이 부족할 때 InnoDB 가 멈출 가능성이 있는 문제 수정했습니다.
- MDEV-29182 : Fix assertion failure on cascading foreign key update of table with vcol index in parent
부모 테이블의 가상 컬럼 인덱스가 있는 경우, foreign key 업데이트 시 발생하는 assertion 오류 수정했습니다.
- MDEV-35679 : Fix potential issue in secondary Index with ROW_FORMAT=COMPRESSED and Change buffering enabled
ROW_FORMAT=COMPRESSED 및 Change buffering 이 활성화된 상태에서 secondary Index 에서 발생할 수 있는 문제 수정했습니다
- MDEV-35445 : Fix issue where ON UPDATE SET NULL could not be specified on a NOT NULL column
ON UPDATE SET NULL이 NOT NULL 제약 조건이 있는 컬럼에서 지정될 수 없던 문제 수정했습니다.
Partitioning
- MDEV-25654 : Fix possible hang or crash during InnoDB purge with HASH indexes during ALTER TABLE
ALTER TABLE 실행 중 InnoDB purge 와 HASH 인덱스에서 발생할 수 있는 crash 또는 멈춤 현상 수정했습니다.
- MDEV-34813 : algorithm = instant can now correctly be used if a table has partitions and one tries to change a column with an index which is not the partitions key. This previously gave error “ERROR 1846 (0A000): ALGORITHM=INSTANT is not supported. Reason: ADD INDEX. Try ALGORITHM=NOCOPY”.
이제 algorithm=instant 는 테이블에 partitions 이 있고, partitions key 가 아닌 인덱스가 있는 column 을 변경하려고 할 때 올바르게 사용할 수 있습니다. 이전에는 다음과 같은 오류가 발생했습니다: "ERROR 1846 (0A000): ALGORITHM=INSTANT is not supported. Reason: ADD INDEX. Try ALGORITHM=NOCOPY"
Galera
- MDEV-35710 : Fix cluster node hang during shutdown if threadpool is used
threadpool 사용 시 노드 종료 중 클러스터 노드가 멈추는 문제를 수정했습니다.
- MDEV-33245 : Fix possible crash in wsrep_check_sequence
wsrep_check_sequence 에서 발생할 수 있는 crash 문제를 수정했습니다.
- MDEV-35018 : Fix issue where DROP TABLE on child and UPDATE of parent table can cause a metadata lock BF-BF conflict when applied concurrently.
DROP TABLE 자식 테이블과 UPDATE 가 부모 테이블 동시에 실행될 경우 metadata lock 으로 인해 BF-BF 충돌이 발생할 수 있는 문제를 해결하였습니다.
- MDEV-35526 : Fix possible crash in wsrep_sst_mariabackup script when upgrading node in cluster from 10.11.9 to 10.11.10.
클러스터에서 노드를 10.11.9 에서 10.11.10 으로 업그레이드할때 wsrep_sst_mariabackup 스크립트에서 발생할 수 있는 crash 문제를 해결했습니다.
General
- MDEV-33783 : After changing the table definition for the system table ‘mysql.servers’, a following execution of CREATE SERVER would previously lead to a server crash. NOTE: System tables should never be modified by a user anyhow
시스템 테이블 mysql.servers 의 테이블 정의를 변경한 후 CREATE SERVER 명령을 실행하면 서버 crash 이 발생하던 문제 수정. 참고: 시스템 테이블은 사용자가 수정해서는 안됩니다.
- MDEV-35647 : Fix possible hang during CREATE TABLE…SELECT error handling, especially with innodb_snapshot_isolation enabled
CREATE TABLE…SELECT 실행 중 오류 처리 과정에서, 특히 innodb_snapshot_isolation 이 활성화된 경우 발생할 수 있는 hang 문제를 수정했습니다.
- MDEV-35326 : Fix possible memory leak on SHUTDOWN
서버 종료(SHUTDOWN) 시 발생할 수 있는 메모리 누수 문제를 수정했습니다.
- MDEV-35575 : Fix possible memory leak while shutting down server after installing the auth_gssapi plugin
auth_gssapi 플러그인을 설치한 후 서버를 종료할 때 발생할 수 있는 메모리 누수 문제를 수정했습니다.
- MDEV-26891 : Fix possible server crash when using INSERT DELAYED on tables with virtual columns.
가상 컬럼이 포함된 테이블에서 INSERT DELAYED 사용 시 발생할 수 있는 서버 crash 문제를 수정했습니다.
- MDEV-24935 : Calling a stored routine that executes a join on three or more tables and referencing not-existent column name in the USING clause could previously result in a crash on its second invocation.
USING 절에서 존재하지 않는 column 이름을 참조하는 stored routine 이 세 개 이상의 테이블을 조인할 경우, 두 번째 실행에서 crash 가 발생할 가능성이 있던 문제를 수정했습니다.