Details
-
Bug
-
Status: Open (View Workflow)
-
Critical
-
Resolution: Unresolved
-
N/A
-
None
-
Not for Release Notes
-
Q2/2026 Server Maintenance
Description
--source include/have_binlog_format_row.inc
|
--source include/have_innodb.inc
|
--source include/master-slave.inc
|
ALTER TABLE mysql.gtid_slave_pos ENGINE=InnoDB; |
SHOW CREATE TABLE mysql.gtid_slave_pos; |
CREATE GLOBAL TEMPORARY TABLE t1 (c INT) ENGINE=InnoDB; |
RESET MASTER;
|
DROP TABLE t1; |
CREATE TABLE t1 (c INT) ENGINE=InnoDB; |
INSERT INTO t1 VALUES (1); |
--sync_slave_with_master
|
DROP TABLE t1; # Cleanup |
--source include/rpl_end.inc |
Leads to:
|
MDEV-35915-v12 CS 12.2.0 b6b856c27fd4c7cc13191ba95848700c0e31e955 (Optimized, Clang 21.1.3-20250923) Build 05/03/2026 |
Slave_SQL_Running No
|
...
|
Last_Errno 1944
|
Last_Error Error executing row event: 'Failed to open t1.test'
|
With TT we see:
|
MDEV-35915-v12 CS 12.2.0 b6b856c27fd4c7cc13191ba95848700c0e31e955 (Optimized, Clang 21.1.3-20250923) Build 05/03/2026 |
Slave_SQL_Running No
|
...
|
Last_SQL_Errno 1146
|
Last_SQL_Error Error executing row event: 'Table 'test.t1' doesn't exist'
|
And with BASE tables the SQL thread does not stop.
Attachments
Issue Links
- is caused by
-
MDEV-35915 Implement Global temporary tables
-
- Stalled
-