Details
-
Bug
-
Status: In Testing (View Workflow)
-
Critical
-
Resolution: Unresolved
-
None
-
None
-
None
-
Q4/2025 Server Development
Description
Locking a global temporary table causes a crash on slave (and an inappropriate table open), even if the table wasn't used in the statement, but just locked.
-- source include/have_binlog_format_row.inc
|
-- source include/master-slave.inc
|
 |
create table t(x int); |
create global temporary table src(x int) on commit preserve rows; |
insert src values(1); |
lock tables t write, src write;
|
insert t values(1); |
show binlog events;
|
sync_slave_with_master;
|
Attachments
Issue Links
- is caused by
-
MDEV-35915 Implement Global temporary tables
-
- Stalled
-