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

InnoDB: assertion: node->pcur->rel_pos == BTR_PCUR_ON in row_update_for_mysql

Details

    Description

      --source include/have_innodb.inc
      --source include/have_partition.inc
       
      CREATE TABLE t (a INT KEY) ENGINE=INNODB WITH SYSTEM VERSIONING PARTITION BY KEY() PARTITIONS 3;
      XA START 'a';
      INSERT INTO t VALUES (1),(2),(3),(4),(5),(6),(7),(8);
      SET TIMESTAMP=+1;
      DELETE FROM t;
      INSERT INTO t VALUES (1),(2);
      DELETE FROM t;
      

      Leads to:

      CS 10.11.12 91de54e098b179f033deb1ee61fc3d7d5997f588 (Optimized) Build 10/02/2025

      InnoDB: Failing assertion: node->pcur->rel_pos == BTR_PCUR_ON
      

      CS 10.11.12 91de54e098b179f033deb1ee61fc3d7d5997f588 (Optimized) Build 10/02/2025

      Core was generated by `/test/MD100225-mariadb-10.11.12-linux-x86_64-opt/bin/mariadbd --no-defaults --m'.
      Program terminated with signal SIGABRT, Aborted.
      #0  __pthread_kill_implementation (no_tid=0, signo=6, threadid=<optimized out>)at ./nptl/pthread_kill.c:44
       
      [Current thread is 1 (Thread 0x14e82c0e86c0 (LWP 2692712))]
      (gdb) bt
      #0  __pthread_kill_implementation (no_tid=0, signo=6, threadid=<optimized out>)at ./nptl/pthread_kill.c:44
      #1  __pthread_kill_internal (signo=6, threadid=<optimized out>)at ./nptl/pthread_kill.c:78
      #2  __GI___pthread_kill (threadid=<optimized out>, signo=signo@entry=6)at ./nptl/pthread_kill.c:89
      #3  0x000014e82e84527e in __GI_raise (sig=sig@entry=6)at ../sysdeps/posix/raise.c:26
      #4  0x000014e82e8288ff in __GI_abort () at ./stdlib/abort.c:79
      #5  0x000055b565d3c029 in ut_dbg_assertion_failed (expr=expr@entry=0x55b5668933e8 "node->pcur->rel_pos == BTR_PCUR_ON", file=file@entry=0x55b566892ee8 "/test/10.11_opt/storage/innobase/row/row0mysql.cc", line=line@entry=1635)at /test/10.11_opt/storage/innobase/ut/ut0dbg.cc:60
      #6  0x000055b565d2e8d8 in row_update_for_mysql (prebuilt=0x14e7d4031fe8)at /test/10.11_opt/storage/innobase/row/row0mysql.cc:1635
      #7  0x000055b5663b6b38 in ha_innobase::delete_row (this=0x14e7d4020918, record=0x14e7d4021918 "\377\002")at /test/10.11_opt/storage/innobase/handler/ha_innodb.cc:8743
      #8  0x000055b56611c9e3 in handler::ha_delete_row (this=0x14e7d4020918, buf=0x14e7d4021918 "\377\002") at /test/10.11_opt/sql/handler.cc:7893
      #9  0x000055b56611c9e3 in handler::ha_delete_row (this=0x14e7d4020068, buf=0x14e7d4021918 "\377\002") at /test/10.11_opt/sql/handler.cc:7893
      #10 0x000055b565e692bd in mysql_delete (thd=thd@entry=0x14e7d4000c68, table_list=<optimized out>, conds=<optimized out>, order_list=order_list@entry=0x14e7d4005890, limit=18446744073709551614, options=<optimized out>, result=<optimized out>)at /test/10.11_opt/sql/sql_delete.cc:867
      #11 0x000055b565eb4a6c in mysql_execute_command (thd=thd@entry=0x14e7d4000c68, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=false)at /test/10.11_opt/sql/sql_limit.h:94
      #12 0x000055b565eb857b in mysql_parse (rawbuf=<optimized out>, length=<optimized out>, parser_state=<optimized out>, thd=0x14e7d4000c68)at /test/10.11_opt/sql/sql_parse.cc:8188
      #13 mysql_parse (thd=0x14e7d4000c68, rawbuf=<optimized out>, length=<optimized out>, parser_state=<optimized out>)at /test/10.11_opt/sql/sql_parse.cc:8110
      #14 0x000055b565eba782 in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x14e7d4000c68, packet=packet@entry=0x14e7d4008559 "DELETE FROM t", packet_length=packet_length@entry=13, blocking=blocking@entry=true)at /test/10.11_opt/sql/sql_parse.cc:2004
      #15 0x000055b565ebc468 in do_command (thd=thd@entry=0x14e7d4000c68, blocking=blocking@entry=true) at /test/10.11_opt/sql/sql_parse.cc:1418
      #16 0x000055b565fe18ed in do_handle_one_connection (connect=<optimized out>, put_in_cache=true) at /test/10.11_opt/sql/sql_connect.cc:1386
      #17 0x000055b565fe1bcd in handle_one_connection (arg=0x55b5a049bf48)at /test/10.11_opt/sql/sql_connect.cc:1298
      #18 0x000014e82e89caa4 in start_thread (arg=<optimized out>)at ./nptl/pthread_create.c:447
      #19 0x000014e82e929c3c in clone3 ()at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78
      

      Bug confirmed present in:
      MariaDB: 10.6.21 (dbg), 10.6.21 (opt), 10.11.12 (dbg), 10.11.12 (opt), 11.4.6 (dbg), 11.4.6 (opt), 11.7.2 (dbg), 11.7.2 (opt), 11.8.0 (dbg), 11.8.0 (opt), 11.8.1 (opt)

      Attachments

        Issue Links

          Activity

            ramesh Ramesh Sivaraman created issue -
            ramesh Ramesh Sivaraman made changes -
            Field Original Value New Value
            Description Leads to:

            {noformat:title=CS 10.11.12 91de54e098b179f033deb1ee61fc3d7d5997f588 (Optimized) Build 10/02/2025}
            InnoDB: Failing assertion: node->pcur->rel_pos == BTR_PCUR_ON
            {noformat}

            {noformat:title=CS 10.11.12 91de54e098b179f033deb1ee61fc3d7d5997f588 (Optimized) Build 10/02/2025}
            Core was generated by `/test/MD100225-mariadb-10.11.12-linux-x86_64-opt/bin/mariadbd --no-defaults --m'.
            Program terminated with signal SIGABRT, Aborted.
            #0 __pthread_kill_implementation (no_tid=0, signo=6, threadid=<optimized out>)at ./nptl/pthread_kill.c:44

            [Current thread is 1 (Thread 0x14e82c0e86c0 (LWP 2692712))]
            (gdb) bt
            #0 __pthread_kill_implementation (no_tid=0, signo=6, threadid=<optimized out>)at ./nptl/pthread_kill.c:44
            #1 __pthread_kill_internal (signo=6, threadid=<optimized out>)at ./nptl/pthread_kill.c:78
            #2 __GI___pthread_kill (threadid=<optimized out>, signo=signo@entry=6)at ./nptl/pthread_kill.c:89
            #3 0x000014e82e84527e in __GI_raise (sig=sig@entry=6)at ../sysdeps/posix/raise.c:26
            #4 0x000014e82e8288ff in __GI_abort () at ./stdlib/abort.c:79
            #5 0x000055b565d3c029 in ut_dbg_assertion_failed (expr=expr@entry=0x55b5668933e8 "node->pcur->rel_pos == BTR_PCUR_ON", file=file@entry=0x55b566892ee8 "/test/10.11_opt/storage/innobase/row/row0mysql.cc", line=line@entry=1635)at /test/10.11_opt/storage/innobase/ut/ut0dbg.cc:60
            #6 0x000055b565d2e8d8 in row_update_for_mysql (prebuilt=0x14e7d4031fe8)at /test/10.11_opt/storage/innobase/row/row0mysql.cc:1635
            #7 0x000055b5663b6b38 in ha_innobase::delete_row (this=0x14e7d4020918, record=0x14e7d4021918 "\377\002")at /test/10.11_opt/storage/innobase/handler/ha_innodb.cc:8743
            #8 0x000055b56611c9e3 in handler::ha_delete_row (this=0x14e7d4020918, buf=0x14e7d4021918 "\377\002") at /test/10.11_opt/sql/handler.cc:7893
            #9 0x000055b56611c9e3 in handler::ha_delete_row (this=0x14e7d4020068, buf=0x14e7d4021918 "\377\002") at /test/10.11_opt/sql/handler.cc:7893
            #10 0x000055b565e692bd in mysql_delete (thd=thd@entry=0x14e7d4000c68, table_list=<optimized out>, conds=<optimized out>, order_list=order_list@entry=0x14e7d4005890, limit=18446744073709551614, options=<optimized out>, result=<optimized out>)at /test/10.11_opt/sql/sql_delete.cc:867
            #11 0x000055b565eb4a6c in mysql_execute_command (thd=thd@entry=0x14e7d4000c68, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=false)at /test/10.11_opt/sql/sql_limit.h:94
            #12 0x000055b565eb857b in mysql_parse (rawbuf=<optimized out>, length=<optimized out>, parser_state=<optimized out>, thd=0x14e7d4000c68)at /test/10.11_opt/sql/sql_parse.cc:8188
            #13 mysql_parse (thd=0x14e7d4000c68, rawbuf=<optimized out>, length=<optimized out>, parser_state=<optimized out>)at /test/10.11_opt/sql/sql_parse.cc:8110
            #14 0x000055b565eba782 in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x14e7d4000c68, packet=packet@entry=0x14e7d4008559 "DELETE FROM t", packet_length=packet_length@entry=13, blocking=blocking@entry=true)at /test/10.11_opt/sql/sql_parse.cc:2004
            #15 0x000055b565ebc468 in do_command (thd=thd@entry=0x14e7d4000c68, blocking=blocking@entry=true) at /test/10.11_opt/sql/sql_parse.cc:1418
            #16 0x000055b565fe18ed in do_handle_one_connection (connect=<optimized out>, put_in_cache=true) at /test/10.11_opt/sql/sql_connect.cc:1386
            #17 0x000055b565fe1bcd in handle_one_connection (arg=0x55b5a049bf48)at /test/10.11_opt/sql/sql_connect.cc:1298
            #18 0x000014e82e89caa4 in start_thread (arg=<optimized out>)at ./nptl/pthread_create.c:447
            #19 0x000014e82e929c3c in clone3 ()at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78
            {noformat}

            Bug confirmed present in:
            MariaDB: 10.6.21 (dbg), 10.6.21 (opt), 10.11.12 (dbg), 10.11.12 (opt), 11.4.6 (dbg), 11.4.6 (opt), 11.7.2 (dbg), 11.7.2 (opt), 11.8.0 (dbg), 11.8.0 (opt), 11.8.1 (opt)
            {code:sql}
            --source include/have_innodb.inc
            --source include/have_partition.inc

            CREATE TABLE t (a INT KEY) ENGINE=INNODB WITH SYSTEM VERSIONING PARTITION BY KEY() PARTITIONS 3;
            XA START 'a';
            INSERT INTO t VALUES (1),(2),(3),(4),(5),(6),(7),(8);
            SET TIMESTAMP=+1;
            DELETE FROM t;
            INSERT INTO t VALUES (1),(2);
            DELETE FROM t;
            {code}

            Leads to:

            {noformat:title=CS 10.11.12 91de54e098b179f033deb1ee61fc3d7d5997f588 (Optimized) Build 10/02/2025}
            InnoDB: Failing assertion: node->pcur->rel_pos == BTR_PCUR_ON
            {noformat}

            {noformat:title=CS 10.11.12 91de54e098b179f033deb1ee61fc3d7d5997f588 (Optimized) Build 10/02/2025}
            Core was generated by `/test/MD100225-mariadb-10.11.12-linux-x86_64-opt/bin/mariadbd --no-defaults --m'.
            Program terminated with signal SIGABRT, Aborted.
            #0 __pthread_kill_implementation (no_tid=0, signo=6, threadid=<optimized out>)at ./nptl/pthread_kill.c:44

            [Current thread is 1 (Thread 0x14e82c0e86c0 (LWP 2692712))]
            (gdb) bt
            #0 __pthread_kill_implementation (no_tid=0, signo=6, threadid=<optimized out>)at ./nptl/pthread_kill.c:44
            #1 __pthread_kill_internal (signo=6, threadid=<optimized out>)at ./nptl/pthread_kill.c:78
            #2 __GI___pthread_kill (threadid=<optimized out>, signo=signo@entry=6)at ./nptl/pthread_kill.c:89
            #3 0x000014e82e84527e in __GI_raise (sig=sig@entry=6)at ../sysdeps/posix/raise.c:26
            #4 0x000014e82e8288ff in __GI_abort () at ./stdlib/abort.c:79
            #5 0x000055b565d3c029 in ut_dbg_assertion_failed (expr=expr@entry=0x55b5668933e8 "node->pcur->rel_pos == BTR_PCUR_ON", file=file@entry=0x55b566892ee8 "/test/10.11_opt/storage/innobase/row/row0mysql.cc", line=line@entry=1635)at /test/10.11_opt/storage/innobase/ut/ut0dbg.cc:60
            #6 0x000055b565d2e8d8 in row_update_for_mysql (prebuilt=0x14e7d4031fe8)at /test/10.11_opt/storage/innobase/row/row0mysql.cc:1635
            #7 0x000055b5663b6b38 in ha_innobase::delete_row (this=0x14e7d4020918, record=0x14e7d4021918 "\377\002")at /test/10.11_opt/storage/innobase/handler/ha_innodb.cc:8743
            #8 0x000055b56611c9e3 in handler::ha_delete_row (this=0x14e7d4020918, buf=0x14e7d4021918 "\377\002") at /test/10.11_opt/sql/handler.cc:7893
            #9 0x000055b56611c9e3 in handler::ha_delete_row (this=0x14e7d4020068, buf=0x14e7d4021918 "\377\002") at /test/10.11_opt/sql/handler.cc:7893
            #10 0x000055b565e692bd in mysql_delete (thd=thd@entry=0x14e7d4000c68, table_list=<optimized out>, conds=<optimized out>, order_list=order_list@entry=0x14e7d4005890, limit=18446744073709551614, options=<optimized out>, result=<optimized out>)at /test/10.11_opt/sql/sql_delete.cc:867
            #11 0x000055b565eb4a6c in mysql_execute_command (thd=thd@entry=0x14e7d4000c68, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=false)at /test/10.11_opt/sql/sql_limit.h:94
            #12 0x000055b565eb857b in mysql_parse (rawbuf=<optimized out>, length=<optimized out>, parser_state=<optimized out>, thd=0x14e7d4000c68)at /test/10.11_opt/sql/sql_parse.cc:8188
            #13 mysql_parse (thd=0x14e7d4000c68, rawbuf=<optimized out>, length=<optimized out>, parser_state=<optimized out>)at /test/10.11_opt/sql/sql_parse.cc:8110
            #14 0x000055b565eba782 in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x14e7d4000c68, packet=packet@entry=0x14e7d4008559 "DELETE FROM t", packet_length=packet_length@entry=13, blocking=blocking@entry=true)at /test/10.11_opt/sql/sql_parse.cc:2004
            #15 0x000055b565ebc468 in do_command (thd=thd@entry=0x14e7d4000c68, blocking=blocking@entry=true) at /test/10.11_opt/sql/sql_parse.cc:1418
            #16 0x000055b565fe18ed in do_handle_one_connection (connect=<optimized out>, put_in_cache=true) at /test/10.11_opt/sql/sql_connect.cc:1386
            #17 0x000055b565fe1bcd in handle_one_connection (arg=0x55b5a049bf48)at /test/10.11_opt/sql/sql_connect.cc:1298
            #18 0x000014e82e89caa4 in start_thread (arg=<optimized out>)at ./nptl/pthread_create.c:447
            #19 0x000014e82e929c3c in clone3 ()at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78
            {noformat}

            Bug confirmed present in:
            MariaDB: 10.6.21 (dbg), 10.6.21 (opt), 10.11.12 (dbg), 10.11.12 (opt), 11.4.6 (dbg), 11.4.6 (opt), 11.7.2 (dbg), 11.7.2 (opt), 11.8.0 (dbg), 11.8.0 (opt), 11.8.1 (opt)
            ramesh Ramesh Sivaraman made changes -
            Assignee Nikita Malyavin [ nikitamalyavin ] Aleksey Midenkov [ midenok ]
            midenok Aleksey Midenkov made changes -
            Status Open [ 1 ] In Progress [ 3 ]
            midenok Aleksey Midenkov made changes -
            midenok Aleksey Midenkov made changes -
            Summary InnoDB: Failing assertion: node->pcur->rel_pos == BTR_PCUR_ON in row_update_for_mysql InnoDB: assertion: node->pcur->rel_pos == BTR_PCUR_ON in row_update_for_mysql

            Please review bb-10.5-midenok2

            midenok Aleksey Midenkov added a comment - Please review bb-10.5-midenok2
            midenok Aleksey Midenkov made changes -
            Assignee Aleksey Midenkov [ midenok ] Nikita Malyavin [ nikitamalyavin ]
            Status In Progress [ 3 ] In Review [ 10002 ]
            midenok Aleksey Midenkov made changes -
            Assignee Nikita Malyavin [ nikitamalyavin ] Oleksandr Byelkin [ sanja ]
            sanja Oleksandr Byelkin made changes -
            Assignee Oleksandr Byelkin [ sanja ] Sergei Golubchik [ serg ]

            Conceptually it's ok. Technically, I'd say, it'd be cleaner to move m_last_part assignment down, instead of restoring it on error, something like that:

            @@ -4628,13 +4628,12 @@ int ha_partition::update_row(const uchar *old_data,
               }
             
            -  m_last_part= new_part_id;
               start_part_bulk_insert(thd, new_part_id);
               DBUG_ASSERT(!m_file[new_part_id]->row_logging);
               if (new_part_id == old_part_id)
               {
                 DBUG_PRINT("info", ("Update in partition %u", (uint) new_part_id));
            -    error= m_file[new_part_id]->ha_update_row(old_data, new_data);
            +    if ((error= m_file[new_part_id]->ha_update_row(old_data, new_data)))
                   goto exit;
               }
               else
            @@ -4663,6 +4662,7 @@ int ha_partition::update_row(const uchar *old_data,
                   goto exit;
               }
             
            +  m_last_part= new_part_id;
             exit:
               /*
                 if updating an auto_increment column, update
            

            serg Sergei Golubchik added a comment - Conceptually it's ok. Technically, I'd say, it'd be cleaner to move m_last_part assignment down, instead of restoring it on error, something like that: @@ -4628,13 +4628,12 @@ int ha_partition::update_row(const uchar *old_data, } - m_last_part= new_part_id; start_part_bulk_insert(thd, new_part_id); DBUG_ASSERT(!m_file[new_part_id]->row_logging); if (new_part_id == old_part_id) { DBUG_PRINT("info", ("Update in partition %u", (uint) new_part_id)); - error= m_file[new_part_id]->ha_update_row(old_data, new_data); + if ((error= m_file[new_part_id]->ha_update_row(old_data, new_data))) goto exit; } else @@ -4663,6 +4662,7 @@ int ha_partition::update_row(const uchar *old_data, goto exit; } + m_last_part= new_part_id; exit: /* if updating an auto_increment column, update
            serg Sergei Golubchik made changes -
            Assignee Sergei Golubchik [ serg ] Aleksey Midenkov [ midenok ]
            Status In Review [ 10002 ] Stalled [ 10000 ]
            midenok Aleksey Midenkov made changes -
            Status Stalled [ 10000 ] In Progress [ 3 ]

            Yep, I was just cautious if `m_last_part` may or should be needed for `start_part_bulk_insert()`. Why it just happened not at the end in the first place? But now I rechecked it and it works just fine with your patch, so I'm making it like that.

            midenok Aleksey Midenkov added a comment - Yep, I was just cautious if `m_last_part` may or should be needed for `start_part_bulk_insert()`. Why it just happened not at the end in the first place? But now I rechecked it and it works just fine with your patch, so I'm making it like that.
            midenok Aleksey Midenkov made changes -
            Labels pushing
            midenok Aleksey Midenkov made changes -
            Status In Progress [ 3 ] Stalled [ 10000 ]
            midenok Aleksey Midenkov added a comment -

            Please decide which branch to push (bb-10.5-midenok2)

            midenok Aleksey Midenkov added a comment - Please decide which branch to push (bb-10.5-midenok2)
            midenok Aleksey Midenkov made changes -
            Assignee Aleksey Midenkov [ midenok ] Sergei Golubchik [ serg ]
            serg Sergei Golubchik made changes -
            Fix Version/s 10.5.29 [ 29996 ]
            Fix Version/s 10.6.22 [ 29997 ]
            Fix Version/s 10.11.12 [ 29998 ]
            Fix Version/s 11.4.6 [ 29999 ]
            Fix Version/s 11.8.2 [ 30001 ]
            Fix Version/s 10.5 [ 23123 ]
            Fix Version/s 10.6 [ 24028 ]
            Fix Version/s 10.11 [ 27614 ]
            Fix Version/s 11.4 [ 29301 ]
            Fix Version/s 11.8 [ 29921 ]
            Assignee Sergei Golubchik [ serg ] Aleksey Midenkov [ midenok ]
            Resolution Fixed [ 1 ]
            Status Stalled [ 10000 ] Closed [ 6 ]

            People

              midenok Aleksey Midenkov
              ramesh Ramesh Sivaraman
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

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