Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-34011

[ERROR] Slave SQL: Error executing row event: 'You can't combine write-locking of system tables with other tables or lock types', Gtid ..., Internal MariaDB error code: 1428

Details

    Description

      # Reproduces fine with MBR and SBR, but not RBR. Requires standard m/s setup.
      CREATE TEMPORARY TABLE t1 (c INT) ENGINE=InnoDB;
      CREATE TABLE t2 (c DATE) ENGINE=MyISAM PARTITION BY LIST (YEARWEEK(c)) (PARTITION p VALUES IN (1,2));
      CREATE TABLE t3 (c INT);
      CREATE TRIGGER tr1 AFTER INSERT ON t3 FOR EACH ROW INSERT INTO t2 VALUES (1);
      XA START 'a';
      INSERT INTO t3 VALUES();
      DELETE FROM mysql.proc LIMIT 1;  # Likely other queries can be used; it is just a state trigger it seems
      

      Leads to:

      11.5.0 3f9182126c64bcec359bebe9ebad2a0e559b13e2 (Debug)

      2024-04-27 15:08:46 5 [Note] Slave I/O thread: connected to master 'repl_user@127.0.0.1:11313',replication starts at GTID position ''
      2024-04-27 15:08:48 6 [ERROR] Slave SQL: Error executing row event: 'You can't combine write-locking of system tables with other tables or lock types', Gtid 0-1-8, Internal MariaDB error code: 1428
      2024-04-27 15:08:48 6 [Warning] Slave: You can't combine write-locking of system tables with other tables or lock types Error_code: 1428
      2024-04-27 15:08:48 6 [ERROR] Error running query, slave SQL thread aborted. Fix the problem, and restart the slave SQL thread with "SLAVE START". We stopped at log 'binlog.000001' position 1633; GTID position '0-1-7'
      

      Tested present in 10.5 (opt+dbg), 11.3 (opt), 11.4 (opt+dbg) and 11.5 (dbg); assumed to be in other versions also, though issue may be lightly sporadic.

      Attachments

        Activity

          Roel Roel Van de Paar added a comment - - edited

          MTR does not seem to reproduce the bug:

          --source include/have_binlog_format_mixed.inc
          --source include/master-slave.inc
          --source include/have_innodb.inc
          --source include/have_partition.inc
          CREATE TEMPORARY TABLE t1 (c INT) ENGINE=InnoDB;
          CREATE TABLE t2 (c DATE) ENGINE=MyISAM PARTITION BY LIST (YEARWEEK(c)) (PARTITION p VALUES IN (1,2));
          CREATE TABLE t3 (c INT) ENGINE=InnoDB;
          CREATE TRIGGER tr1 AFTER INSERT ON t3 FOR EACH ROW INSERT INTO t2 VALUES (1);
          XA START 'a';
          --error ER_TRUNCATED_WRONG_VALUE
          INSERT INTO t3 VALUES();
          --sync_slave_with_master
          DELETE FROM mysql.proc LIMIT 1;
          SELECT SLEEP(5);
          --source include/rpl_end.inc
          

          Roel Roel Van de Paar added a comment - - edited MTR does not seem to reproduce the bug: --source include/have_binlog_format_mixed.inc --source include/master-slave.inc --source include/have_innodb.inc --source include/have_partition.inc CREATE TEMPORARY TABLE t1 (c INT ) ENGINE=InnoDB; CREATE TABLE t2 (c DATE ) ENGINE=MyISAM PARTITION BY LIST (YEARWEEK(c)) (PARTITION p VALUES IN (1,2)); CREATE TABLE t3 (c INT ) ENGINE=InnoDB; CREATE TRIGGER tr1 AFTER INSERT ON t3 FOR EACH ROW INSERT INTO t2 VALUES (1); XA START 'a' ; --error ER_TRUNCATED_WRONG_VALUE INSERT INTO t3 VALUES (); --sync_slave_with_master DELETE FROM mysql.proc LIMIT 1; SELECT SLEEP(5); --source include/rpl_end.inc

          People

            Elkin Andrei Elkin
            Roel Roel Van de Paar
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:

              Git Integration

                Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.