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

Assertion failure in row_upd_sec_index_entry, corruption error with indexed virtual column

    XMLWordPrintable

Details

    • Can result in unexpected behaviour

    Description

      The test case is non-deterministic, run with --repeat=N. It fails rather unevenly, sometimes reliably in 5-10 attempts, sometimes barely in 100. Make N big enough, it's a very quick test, so it won't hurt.

      --source include/have_innodb.inc
      --source include/have_sequence.inc
       
      CREATE TABLE t (f1 INT, v1 INT AS (f1) VIRTUAL) ENGINE=InnoDB;
      INSERT INTO t (f1) SELECT seq FROM seq_1_to_100;
      --connect (con1,localhost,root,,)
      --send
        ALTER TABLE t ADD KEY idx (v1);
      --connection default
      --error ER_NO_SUCH_TABLE
      ALTER TABLE xx;
      INSERT INTO t (f1) SELECT f1 FROM t;
      DELETE FROM t WHERE f1 NOT BETWEEN 5 AND 10;
       
      --connection con1
      --reap
      --disconnect con1
      --connection default
      DROP TABLE t;
      

      10.6 debug 3bcfc2ed0aed64882868b42885c6b55a98e7c505

      2025-07-15 21:37:27 14 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000001),[6]      (0x0000000003F4)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000001),[6]      (0x000000000390)}
      mariadbd: /data/bld/10.6-asan-ubsan/storage/innobase/row/row0upd.cc:1926: dberr_t row_upd_sec_index_entry(upd_node_t*, que_thr_t*): Assertion `0' failed.
      250715 21:37:27 [ERROR] /share8t/bld/10.6-asan-ubsan/sql/mariadbd got signal 6 ;
       
      #10 0x00007fc7ea653eb2 in __GI___assert_fail (assertion=0x555b9f856ae0 "0", file=0x555b9f860b80 "/data/bld/10.6-asan-ubsan/storage/innobase/row/row0upd.cc", line=1926, function=0x555b9f85f0e0 "dberr_t row_upd_sec_index_entry(upd_node_t*, que_thr_t*)") at ./assert/assert.c:101
      #11 0x0000555b9e533b6e in row_upd_sec_index_entry (node=node@entry=0x62000001b880, thr=thr@entry=0x62000001bc60) at /data/bld/10.6-asan-ubsan/storage/innobase/row/row0upd.cc:1926
      #12 0x0000555b9e534c5c in row_upd_sec_step (node=node@entry=0x62000001b880, thr=thr@entry=0x62000001bc60) at /data/bld/10.6-asan-ubsan/storage/innobase/row/row0upd.cc:2054
      #13 0x0000555b9e537275 in row_upd (node=node@entry=0x62000001b880, thr=thr@entry=0x62000001bc60) at /data/bld/10.6-asan-ubsan/storage/innobase/row/row0upd.cc:2801
      #14 0x0000555b9e537dd5 in row_upd_step (thr=thr@entry=0x62000001bc60) at /data/bld/10.6-asan-ubsan/storage/innobase/row/row0upd.cc:2916
      #15 0x0000555b9e448394 in row_update_for_mysql (prebuilt=<optimized out>) at /data/bld/10.6-asan-ubsan/storage/innobase/row/row0mysql.cc:1669
      #16 0x0000555b9decf2ca in ha_innobase::delete_row (this=0x625000947148, record=<optimized out>) at /data/bld/10.6-asan-ubsan/storage/innobase/handler/ha_innodb.cc:8766
      #17 0x0000555b9cb039f7 in handler::ha_delete_row (this=this@entry=0x625000947148, buf=<optimized out>) at /data/bld/10.6-asan-ubsan/sql/handler.cc:7947
      #18 0x0000555b9d60b8ab in TABLE::delete_row (this=this@entry=0x6190000cdf98) at /data/bld/10.6-asan-ubsan/sql/sql_delete.cc:292
      #19 0x0000555b9d606cdb in mysql_delete (thd=thd@entry=0x62b0000bd218, table_list=<optimized out>, conds=<optimized out>, order_list=order_list@entry=0x62b0000c2128, limit=18446744073709551521, options=options@entry=0, result=<optimized out>) at /data/bld/10.6-asan-ubsan/sql/sql_delete.cc:856
      #20 0x0000555b9b8d6890 in mysql_execute_command (thd=thd@entry=0x62b0000bd218, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=false) at /data/bld/10.6-asan-ubsan/sql/sql_parse.cc:4924
      #21 0x0000555b9b8ebd04 in mysql_parse (thd=thd@entry=0x62b0000bd218, rawbuf=<optimized out>, length=<optimized out>, parser_state=parser_state@entry=0x7fc7da489ac0) at /data/bld/10.6-asan-ubsan/sql/sql_parse.cc:8200
      #22 0x0000555b9b8f4fd4 in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x62b0000bd218, packet=packet@entry=0x629000e65219 "DELETE FROM t WHERE f1 NOT BETWEEN 5 AND 10", packet_length=packet_length@entry=43, blocking=blocking@entry=true) at /data/bld/10.6-asan-ubsan/sql/sql_parse.cc:1908
      #23 0x0000555b9b901c26 in do_command (thd=thd@entry=0x62b0000bd218, blocking=blocking@entry=true) at /data/bld/10.6-asan-ubsan/sql/sql_parse.cc:1421
      #24 0x0000555b9c0836ee in do_handle_one_connection (connect=<optimized out>, connect@entry=0x608000018938, put_in_cache=put_in_cache@entry=true) at /data/bld/10.6-asan-ubsan/sql/sql_connect.cc:1386
      #25 0x0000555b9c08484b in handle_one_connection (arg=0x608000018938) at /data/bld/10.6-asan-ubsan/sql/sql_connect.cc:1298
      #26 0x0000555b9dab32d7 in pfs_spawn_thread (arg=0x617000007e98) at /data/bld/10.6-asan-ubsan/storage/perfschema/pfs.cc:2201
      #27 0x00007fc7ea6a81c4 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
      #28 0x00007fc7ea72885c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
      

      10.6 non-debug 3bcfc2ed0aed64882868b42885c6b55a98e7c505

      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000001),[6]     d(0x000000000264)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000001),[6]      (0x000000000200)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000002),[6]     e(0x000000000265)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000002),[6]      (0x000000000201)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000003),[6]     f(0x000000000266)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000003),[6]      (0x000000000202)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000004),[6]     g(0x000000000267)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000004),[6]      (0x000000000203)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x8000000B),[6]     n(0x00000000026E)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x8000000B),[6]      (0x00000000020A)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x8000000C),[6]     o(0x00000000026F)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x8000000C),[6]      (0x00000000020B)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x8000000D),[6]     p(0x000000000270)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x8000000D),[6]      (0x00000000020C)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x8000000E),[6]     q(0x000000000271)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x8000000E),[6]      (0x00000000020D)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x8000000F),[6]     r(0x000000000272)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x8000000F),[6]      (0x00000000020E)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000010),[6]     s(0x000000000273)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000010),[6]      (0x00000000020F)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000011),[6]     t(0x000000000274)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000011),[6]      (0x000000000210)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000012),[6]     u(0x000000000275)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000012),[6]      (0x000000000211)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000013),[6]     v(0x000000000276)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000013),[6]      (0x000000000212)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000014),[6]     w(0x000000000277)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000014),[6]      (0x000000000213)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000015),[6]     x(0x000000000278)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000015),[6]      (0x000000000214)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000016),[6]     y(0x000000000279)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000016),[6]      (0x000000000215)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000017),[6]     z(0x00000000027A)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000017),[6]      (0x000000000216)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000018),[6]     {(0x00000000027B)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000018),[6]      (0x000000000217)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000019),[6]     |(0x00000000027C)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000019),[6]      (0x000000000218)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x8000001A),[6]     }(0x00000000027D)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x8000001A),[6]      (0x000000000219)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x8000001B),[6]     ~(0x00000000027E)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x8000001B),[6]      (0x00000000021A)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x8000001C),[6]      (0x00000000027F)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x8000001C),[6]      (0x00000000021B)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x8000001D),[6]      (0x000000000280)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x8000001D),[6]      (0x00000000021C)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x8000001E),[6]      (0x000000000281)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x8000001E),[6]      (0x00000000021D)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x8000001F),[6]      (0x000000000282)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x8000001F),[6]      (0x00000000021E)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]    (0x80000020),[6]      (0x000000000283)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]    (0x80000020),[6]      (0x00000000021F)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   !(0x80000021),[6]      (0x000000000284)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   !(0x80000021),[6]      (0x000000000220)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   "(0x80000022),[6]      (0x000000000285)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   "(0x80000022),[6]     !(0x000000000221)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   #(0x80000023),[6]      (0x000000000286)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   #(0x80000023),[6]     "(0x000000000222)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   $(0x80000024),[6]      (0x000000000287)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   $(0x80000024),[6]     #(0x000000000223)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   %(0x80000025),[6]      (0x000000000288)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   %(0x80000025),[6]     $(0x000000000224)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   &(0x80000026),[6]      (0x000000000289)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   &(0x80000026),[6]     %(0x000000000225)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   '(0x80000027),[6]      (0x00000000028A)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   '(0x80000027),[6]     &(0x000000000226)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   ((0x80000028),[6]      (0x00000000028B)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   ((0x80000028),[6]     '(0x000000000227)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   )(0x80000029),[6]      (0x00000000028C)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   )(0x80000029),[6]     ((0x000000000228)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   *(0x8000002A),[6]      (0x00000000028D)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   *(0x8000002A),[6]     )(0x000000000229)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   +(0x8000002B),[6]      (0x00000000028E)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   +(0x8000002B),[6]     *(0x00000000022A)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   ,(0x8000002C),[6]      (0x00000000028F)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   ,(0x8000002C),[6]     +(0x00000000022B)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   -(0x8000002D),[6]      (0x000000000290)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   -(0x8000002D),[6]     ,(0x00000000022C)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   .(0x8000002E),[6]      (0x000000000291)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   .(0x8000002E),[6]     -(0x00000000022D)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   /(0x8000002F),[6]      (0x000000000292)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   /(0x8000002F),[6]     .(0x00000000022E)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   0(0x80000030),[6]      (0x000000000293)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   0(0x80000030),[6]     /(0x00000000022F)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   1(0x80000031),[6]      (0x000000000294)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   1(0x80000031),[6]     0(0x000000000230)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   2(0x80000032),[6]      (0x000000000295)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   2(0x80000032),[6]     1(0x000000000231)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   3(0x80000033),[6]      (0x000000000296)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   3(0x80000033),[6]     2(0x000000000232)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   4(0x80000034),[6]      (0x000000000297)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   4(0x80000034),[6]     3(0x000000000233)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   5(0x80000035),[6]      (0x000000000298)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   5(0x80000035),[6]     4(0x000000000234)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   6(0x80000036),[6]      (0x000000000299)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   6(0x80000036),[6]     5(0x000000000235)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   7(0x80000037),[6]      (0x00000000029A)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   7(0x80000037),[6]     6(0x000000000236)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   8(0x80000038),[6]      (0x00000000029B)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   8(0x80000038),[6]     7(0x000000000237)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   9(0x80000039),[6]      (0x00000000029C)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   9(0x80000039),[6]     8(0x000000000238)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   :(0x8000003A),[6]      (0x00000000029D)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   :(0x8000003A),[6]     9(0x000000000239)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   ;(0x8000003B),[6]      (0x00000000029E)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   ;(0x8000003B),[6]     :(0x00000000023A)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   <(0x8000003C),[6]      (0x00000000029F)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   <(0x8000003C),[6]     ;(0x00000000023B)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   =(0x8000003D),[6]      (0x0000000002A0)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   =(0x8000003D),[6]     <(0x00000000023C)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   >(0x8000003E),[6]      (0x0000000002A1)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   >(0x8000003E),[6]     =(0x00000000023D)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   ?(0x8000003F),[6]      (0x0000000002A2)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   ?(0x8000003F),[6]     >(0x00000000023E)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   @(0x80000040),[6]      (0x0000000002A3)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   @(0x80000040),[6]     ?(0x00000000023F)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   A(0x80000041),[6]      (0x0000000002A4)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   A(0x80000041),[6]     @(0x000000000240)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   B(0x80000042),[6]      (0x0000000002A5)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   B(0x80000042),[6]     A(0x000000000241)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   C(0x80000043),[6]      (0x0000000002A6)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   C(0x80000043),[6]     B(0x000000000242)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   D(0x80000044),[6]      (0x0000000002A7)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   D(0x80000044),[6]     C(0x000000000243)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   E(0x80000045),[6]      (0x0000000002A8)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   E(0x80000045),[6]     D(0x000000000244)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   F(0x80000046),[6]      (0x0000000002A9)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   F(0x80000046),[6]     E(0x000000000245)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   G(0x80000047),[6]      (0x0000000002AA)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   G(0x80000047),[6]     F(0x000000000246)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   H(0x80000048),[6]      (0x0000000002AB)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   H(0x80000048),[6]     G(0x000000000247)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   I(0x80000049),[6]      (0x0000000002AC)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   I(0x80000049),[6]     H(0x000000000248)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   J(0x8000004A),[6]      (0x0000000002AD)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   J(0x8000004A),[6]     I(0x000000000249)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   K(0x8000004B),[6]      (0x0000000002AE)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   K(0x8000004B),[6]     J(0x00000000024A)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   L(0x8000004C),[6]      (0x0000000002AF)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   L(0x8000004C),[6]     K(0x00000000024B)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   M(0x8000004D),[6]      (0x0000000002B0)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   M(0x8000004D),[6]     L(0x00000000024C)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   N(0x8000004E),[6]      (0x0000000002B1)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   N(0x8000004E),[6]     M(0x00000000024D)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   O(0x8000004F),[6]      (0x0000000002B2)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   O(0x8000004F),[6]     N(0x00000000024E)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   P(0x80000050),[6]      (0x0000000002B3)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   P(0x80000050),[6]     O(0x00000000024F)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   Q(0x80000051),[6]      (0x0000000002B4)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   Q(0x80000051),[6]     P(0x000000000250)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   R(0x80000052),[6]      (0x0000000002B5)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   R(0x80000052),[6]     Q(0x000000000251)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   S(0x80000053),[6]      (0x0000000002B6)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   S(0x80000053),[6]     R(0x000000000252)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   T(0x80000054),[6]      (0x0000000002B7)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   T(0x80000054),[6]     S(0x000000000253)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   U(0x80000055),[6]      (0x0000000002B8)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   U(0x80000055),[6]     T(0x000000000254)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   V(0x80000056),[6]      (0x0000000002B9)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   V(0x80000056),[6]     U(0x000000000255)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   W(0x80000057),[6]      (0x0000000002BA)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   W(0x80000057),[6]     V(0x000000000256)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   X(0x80000058),[6]      (0x0000000002BB)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   X(0x80000058),[6]     W(0x000000000257)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   Y(0x80000059),[6]      (0x0000000002BC)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   Y(0x80000059),[6]     X(0x000000000258)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   Z(0x8000005A),[6]      (0x0000000002BD)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   Z(0x8000005A),[6]     Y(0x000000000259)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   [(0x8000005B),[6]      (0x0000000002BE)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   [(0x8000005B),[6]     Z(0x00000000025A)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   \(0x8000005C),[6]      (0x0000000002BF)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   \(0x8000005C),[6]     [(0x00000000025B)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   ](0x8000005D),[6]      (0x0000000002C0)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   ](0x8000005D),[6]     \(0x00000000025C)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   ^(0x8000005E),[6]      (0x0000000002C1)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   ^(0x8000005E),[6]     ](0x00000000025D)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   _(0x8000005F),[6]      (0x0000000002C2)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   _(0x8000005F),[6]     ^(0x00000000025E)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   `(0x80000060),[6]      (0x0000000002C3)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   `(0x80000060),[6]     _(0x00000000025F)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   a(0x80000061),[6]      (0x0000000002C4)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   a(0x80000061),[6]     `(0x000000000260)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   b(0x80000062),[6]      (0x0000000002C5)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   b(0x80000062),[6]     a(0x000000000261)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   c(0x80000063),[6]      (0x0000000002C6)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   c(0x80000063),[6]     b(0x000000000262)}
      2025-07-15 21:39:02 4 [ERROR] InnoDB: Record in index `idx` of table `test`.`t` was not found on update: TUPLE (info_bits=0, 2 fields): {[4]   d(0x80000064),[6]      (0x0000000002C7)} at: COMPACT RECORD(info_bits=32, 2 fields): {[4]   d(0x80000064),[6]     c(0x000000000263)}
      

      Attachments

        Activity

          People

            midenok Aleksey Midenkov
            elenst Elena Stepanova
            Votes:
            0 Vote for this issue
            Watchers:
            1 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.