MariaDB 10.5.25 Release Notes

You are viewing an old version of this article. View the current version here.

Note: This page describes features in the source repository for MariaDB 10.5. There are currently no official packages or binaries available for download which contain the features. If you want to try out any of the new features described here you will need to get and compile the code yourself.

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.25 is a Stable (GA) release.

For an overview of MariaDB 10.5 see the What is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

From this version the mariadb-dump tool adds a new sandbox command to the top of every dump file, this command cannot be interpreted by MariaDB command line client versions who do not have the sandbox command or MySQL command line clients. It will error in these clients. Other methods of importing the dump will work not have this issue.

Storage Engines

InnoDB

  • Adaptive hash index corruption after ALTER TABLE…DISCARD TABLESPACE (MDEV-33400)
  • InnoDB: Failing assertion: sym_node->table != NULL in pars_retrieve_table_def on UPDATE (MDEV-32346)
  • Fatal InnoDB error or assertion `!is_v' failure upon multi-update with indexed virtual column (MDEV-31154)
  • Fatal error InnoDB: Clustered record field for column x not found (MDEV-33558)
  • Alter operation hangs when encryption thread works on the same tablespace (MDEV-33770)
  • MariaDB segfault on rowid filter query involving generated column (MDEV-33795)
  • Discard/Import Tablespace, Restart, Index Corruption (MDEV-33512)
  • Alter table corrupts while applying the modification log (MDEV-19044)
  • Weird read view after ROLLBACK of other transactions. (MDEV-33802)
  • Read only server throws error when running a create temporary table as select statement (MDEV-33889)
  • Change buffer index fails to delete the records (MDEV-32489)
  • Innodb include OS error information when failing to write to iblogfile0 (MDEV-33397)
  • In-place migration from MySQL 5.7 causes invalid AUTO_INCREMENT values (MDEV-33277)
  • InnoDB may corrupt its log before upgrading it on startup (MDEV-32445)
  • Table is getting rebuild with ALTER TABLE ADD COLUMN (MDEV-33214)

Federated

  • Wrong result on 2nd execution of PS for query with derived table (MDEV-31361)

Spider

  • Server crashes when deleting partitions from a table with spider engine (MDEV-33731)
  • spider plugin init failure with no_zero_date sql_mode (MDEV-33494)
  • sql plugin init failure with traditional sql_mode (MDEV-33584)
  • spider returns parsing failure on valid left join select by translating the on expression to () (MDEV-33679)
  • Spider: ERROR 12710 (HY000): Invalid information from remote table when using MariaDB 10.5 local and MariaDB 10.6 remote (MDEV-33777)
  • Spider: @@insert_id 128 to TINYINT: Assertion `!is_set() || (m_status == DA_OK_BULK && is_bulk_op())' failed. (MDEV-28105)
  • No spider variables available is Spider is loaded upon server startup (MDEV-33441)

Backup

  • mariadb-backup fails to preserve innodb_encrypt_tables (MDEV-33334)
  • MDEV-30968 breaks running mariabackup on older mariadb (opendir(NULL)) (MDEV-31251)
  • mariabackup --backup: FATAL ERROR: ... Can't open datafile cool_down/t3 (MDEV-33011)
  • mariadb-backup --backup is missing retry logic for undo tablespaces (MDEV-33980)
  • mariabackup --prepare: [ERROR] InnoDB: Crash recovery is broken due to insufficient innodb_log_file_size (MDEV-33540)
  • Crash in mariadb-backup --prepare --export after --prepare (MDEV-33023)
  • mariadb-backup is not considering O/S user when --user option is omitted (MDEV-32893)

Character Sets, Data Types

  • ORDER BY COLLATE improperly applied to non-character columns (MDEV-33318)
  • Default charset doesn't work with PHP MySQLi extension (MDEV-32975)
  • Bad SEPARATOR value in GROUP_CONCAT on character set conversion (MDEV-33772)
  • Out of range error in AVG(YEAR(datetime)) due to a wrong data type (MDEV-33496)
  • GREATEST() and LEAST() malfunction for NULL (MDEV-21034)

JSON

  • View created via JSON_ARRAYAGG returns incorrect json object (MDEV-30646)
  • JSON_TYPE doesnt detect the type of String Values (returns NULL) and for Date/DateTime returns "INTEGER" (MDEV-19487)
  • JSON_REMOVE returns NULL on valid arguments. (MDEV-22141)
  • JSON_EXTRACT not returning multiple values for same path (MDEV-32287)

Encryption, TLS, SSL

  • WolfSSL's math is unnecessarily slow (MDEV-33482)

Optimization & Tuning

  • Server crashes in JOIN_CACHE::write_record_data upon EXPLAIN with subqueries and constant tables (MDEV-21102)
  • Wrong result with cross Join given join order (MDEV-30975)
  • Wrong warnings on 2-nd execution of PS for query with GROUP_CONCAT (MDEV-31276)
  • Wrong result with semi-join and splittable derived table (MDEV-23878)
  • Aggregation functions fail to leverage uniqueness property (MDEV-30660)

Plugins

  • audit plugin do not report user did the action (MDEV-33393)

Replication

  • --gtid-ignore-duplicate can double-apply event in case of parallel replication retry (MDEV-33475)
  • Server crash in Rows_log_event::update_sequence upon replaying binary log (MDEV-31779)
  • Slave crashed:reload_acl_and_cache during shutdown (MDEV-30260)
  • When binlog_annotate_row_events on , event of binlog file is truncated (MDEV-9179)

SQL, Data Definition, and Data Manipulation

  • Transportable Tablespaces leave AUTO_INCREMENT in mismatched state, causing INSERT errors in newly imported tables when .cfg is not used. (MDEV-18288)
  • wrong row targeted with "insert ... on duplicate" and "replace", leading to data corruption (MDEV-30046)
  • Incorrect DEFAULT expression evaluated in UPDATE (MDEV-33790)
  • Incorrect handling of UPDATE in PS mode in case a table's colum declared as NOT NULL (MDEV-33549)
  • Crash in EXECUTE IMMEDIATE 'CREATE OR REPLACE TABLE t1 (a INT DEFAULT ?)' USING DEFAULT, UBSAN runtime error: member call on null pointer of type 'struct TABLE_LIST' in Item_param::save_in_field (MDEV-15703)
  • Wrong result on 2-nd execution of PS to select from view using derived (MDEV-31277)
  • The TIMESTAMP value of '1970-01-01 00:00:00' can be indirectly inserted in strict mode (MDEV-34088)
  • Zero datetime reinterprets as '1970-01-01 00:00:00' on field_datetime=field_timestamp (MDEV-34069)
  • unix_timestamp(coalesce(timestamp_column)) returns NULL on '1970-01-01 00:00:00.000001' (MDEV-34061)
  • Server Crash using UDF in WHERE clause of VIEW (MDEV-24507)
  • Update for portion changes autoincrement key in period table (MDEV-25370)
  • CREATE TABLE with generated column and RLIKE results in sigabrt (MDEV-21058)

General

Scripts & Clients

  • [PATCH] mysqldump --dump-slave=2 --master-data=2 doesn't record both (MDEV-4827)
  • Loading time zones does not work with alter_algorithm INPLACE (MDEV-33044)
  • mariadb-dump trusts the server and does not validate the data (MDEV-33727)
  • Disable system commands in mysql/mariadb client(MDEV-21778)

Server

  • Original IP not shown in network related error messages when proxy_protocol is in use (MDEV-33506)
  • Server incorrectly describes known variables as UNKNOWN if invalid values are specified at startup (MDEV-33469)
  • update case insensitive (large) unique key with insensitive change of value - duplicate key (MDEV-29345)
  • MariaDB will abort server startup if it finds an invalid parameter, but won't check for other invalid params (MDEV-26923)

Security

Changelog

For a complete list of changes made in MariaDB 10.5.25, with links to detailed information on each push, see the changelog.


Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.