MySQL 8.4 Release Notes  /  Changes in MySQL 8.4.11 (2026-07-28)

Changes in MySQL 8.4.11 (2026-07-28)

Audit Log Notes

  • The server could close unexpectedly if audit_log_encryption_password_get(keyring ID) was called. (Bug #33296125)

Compilation Notes

  • The version of libfido2 used with MySQL was upgraded to 1.17.0. (Bug #39478664)

Deprecation and Removal Notes

InnoDB Notes

  • InnoDB: Fixed a debug assertion in row_upd_rec_in_place() for non-versioned ROW_FORMAT=REDUNDANT rows. (Bug #39165747)

  • InnoDB: During a buffer-pool resize, Adaptive Hash Index could be disabled in mysqld-auto.cnf even though innodb_adaptive_hash_index=ON. (Bug #39157211)

  • InnoDB: Under certain circumstances, removing a record could require merging B-tree pages and updating their parent page. InnoDB could underestimate the size of index records, causing it to acquire page latches in an unsafe order and potentially deadlock with a concurrent B-tree search.

    InnoDB now calculates maximum record sizes more accurately, including for indexed prefix fields and spatial GEOMETRY indexes. This lets it take the required latches earlier and avoid the deadlock. As a result, some CREATE TABLE and ALTER TABLE statements that exceed documented InnoDB limits are now correctly rejected. (Bug #39129182)

  • InnoDB: Fixed an issue relating to table maintenance and clean-up. (Bug #39091376)

  • InnoDB: Under certain circumstances, when adding an AUTO_INCREMENT column to an existing table, some records in that table could be skipped, resulting in inaccurate values in the AUTO_INCREMENT column.

    Our thanks to Huaxiong Song and the team at Alibaba for the contribution. (Bug #115136, Bug #37105825)

JSON Notes

  • Fixed an issue relating to JSON Schema validation. (Bug #39489024)

MySQL Programs Notes

  • mysql_tzinfo_to_sql generated unnecessary warnings. For example:

    Warning: Unable to load '/usr/share/zoneinfo//iso3166.tab' as time zone. Skipping it.
    Warning: Unable to load '/usr/share/zoneinfo//leap-seconds.list' as time zone. Skipping it.
    Warning: Unable to load '/usr/share/zoneinfo//leapseconds' as time zone. Skipping it.
    Warning: Unable to load '/usr/share/zoneinfo//tzdata.zi' as time zone. Skipping it.
    Warning: Unable to load '/usr/share/zoneinfo//zone.tab' as time zone. Skipping it.
    Warning: Unable to load '/usr/share/zoneinfo//zone1970.tab' as time zone. Skipping it.

    As of this release, those warnings are suppressed.

    Our thanks to Daniƫl van Eeden for the contribution. (Bug #115021, Bug #36624161)

Optimizer Notes

  • Fixed an issue relating to Common Table Expressions with subquery_to_derived enabled. (Bug #39179197)

  • Fixed an issue in ExtractValue(). (Bug #39138426)

  • Fixed an issue relating to dynamic scan execution.

    Our thanks to Mengchu Shi and the team from Alibaba for the contribution. (Bug #38657550)

  • Some LEFT JOIN queries with OR conditions displayed dynamic range access in EXPLAIN, but still performed full scans of the inner table at execution time. This occurred because the optimizer did not recognize eligible outer-join predicates when evaluating range access.

    The optimizer now considers these predicates for dynamic range analysis, allowing eligible LEFT JOIN queries to use an index range scan re-planned for each outer row instead of repeatedly scanning the full inner table.

    Our thanks to Hope Lee for the contribution. (Bug #113288, Bug #36061036)

Performance Schema Notes

  • Fixed an issue relating to OBJECT_INSTANCE_BEGIN columns. (Bug #39449066)

Replication Notes

  • Replication: Fixed an issue relating to client BINLOG execution with REPLICATION_APPLIER. (Bug #39474825)

  • Replication: Fixed an issue relating to heartbeat handling. (Bug #39377010)

  • Replication: On writable replicas with log_replica_updates disabled, concurrent local commits and applier work could cause a race condition. (Bug #39259437)

  • Replication: Fixed an issue relating to event rotate handling. (Bug #39253359)

  • Replication: A replication receiver configured with SOURCE_RETRY_COUNT=0 could stop after a later transient connection loss, despite SOURCE_RETRY_COUNT=0 allowing unlimited reconnect attempts. The inconsistency could also cause the receiver to exit without logging an additional reconnect error.

    Replication now consistently treats SOURCE_RETRY_COUNT=0 as unlimited across reconnect paths, allowing the receiver to continue retrying and catch up after repeated transient failures. (Bug #39086875)

  • Replication: Fixed an issue relating to error handling. (Bug #38924622)

  • Replication: ALTER USER statements with explicit empty authentication data were rewritten for the binary log without preserving the empty authentication string. This resulted in password_expired errors. (Bug #38478657)

  • Replication: If a replication channel was configured using an applier user, the privilege check for CREATE and DROP statements failed if those privileges are granted only at the database-specific level for that user. (Bug #37587555)

  • Replication: If explicit_defaults_for_timestamp was disabled, row-based replica apply or mysqlbinlog replay could stop when recomputing a stored, generated TIMESTAMP NOT NULL column from NULL input. Errors were returned similar to the following:

    Could not execute Write_rows event on table tablename; Column 'timestamp_col2' 
    cannot be null, Error_code: 1048; handler error No Error!

    The row is now applied using the field default and a warning is emitted. (Bug #120128, Bug #39182574)

  • Fixed several issues relating to validations. (Bug #39234600, Bug #38673268, Bug #38673285, Bug #38712932, Bug #39253416, Bug #39282368, Bug #39253383, Bug #39253491, Bug #39254867, Bug #39254885, Bug #39254896, Bug #39254914, Bug #39282350, Bug #39319907)

X Plugin Notes

  • Fixed several issues in the X Plugin. (Bug #39268692, Bug #39268863)

Bugs Fixed

  • Fixed several issues in the Clone plugin. (Bug #39252316, Bug #39245805, Bug #39245844, Bug #39253040, Bug #39253103)

  • It was not possible to start the server on Oracle Linux or Red Hat Linux 9 if innodb_redo_log_encrypt=ON was defined in the configuration file. (Bug #39181231)

  • Fixed an issue relating to connection-attribute parsing. (Bug #39116965)

  • Some Polish characters were replaced by question marks (?) in client messages. (Bug #38036138)

  • Fixed an issue relating to table maintenance statement error handling after table and metadata-lock cleanup.

    Our thanks to Yin Peng and the team from Tencent for the contribution. (Bug #37797437)

  • If an expression involved in condition pushdown had one view reference which was also an outer reference and one local reference, then dependency consistency checks failed while cloning the condition.

    We solve this by traversing the item tree prefix and postfix. While traversing the prefix, we set the Item_ref object to be used for setting dependency and context information for the underlying columns of the reference object; while traversing the postfix, we clear this object. (Bug #36368181)

  • During LOAD DATA, fields can be marked temporarily nullable while input rows are parsed. If a row supplies NULL for a NOT NULL column, LOAD DATA could leave temporary NULL state on the table fields before returning to the same thread. A later INSERT in that same session can then treat valid non-NULL values as NULL and return ER_BAD_NULL_ERROR.

    Our thanks to Feng Chuanheng for the contribution. (Bug #118060, Bug #38939847)

  • Upgrading from older 8.x releases with thousands of tables, views, routines, and events caused the memory consumed by server to grow continuously, leading to significant memory spikes.

    Memory management is improved for these scenarios. (Bug #117983, Bug #37832455, Bug #38031020)

  • The following were not properly defined as reserved keywords:

    • CUBE

    • EXTERNAL

    • QUALIFY

    • TABLESAMPLE

    The following were not properly defined as non-reserved keywords:

    • MANUAL

    • PARALLEL

    (Bug #114874, Bug #36584265)

  • Fixed a memory leak in statement_digest() and statement_digest_text(). (Bug #104115, Bug #33073320)