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

ER_LOCK_DEADLOCK not detected upon DML on table with vector key, server crashes

    XMLWordPrintable

Details

    Description

      The test case fails every time for me, so I assume for now that it is deterministic.

      --source include/have_innodb.inc
       
      CREATE TABLE t (pk INT, b VECTOR(1) NOT NULL, VECTOR(b), PRIMARY KEY (pk)) ENGINE=InnoDB;
      INSERT INTO t VALUES (1,0x31313131),(2,0x32323232);
       
      START TRANSACTION;
      INSERT INTO t VALUES (3,0x33333333);
       
      --connect (con1,localhost,root,,)
      --send
        DELETE FROM t;
       
      --connection default
      --let $show_statement= SHOW PROCESSLIST
      --let $field= State
      --let $condition= = 'Updating'
      --source include/wait_show_condition.inc
      SET innodb_lock_wait_timeout= 1;
      --error ER_LOCK_DEADLOCK
      DELETE FROM t;
       
      # Cleanup
      ROLLBACK;
      --connection con1
      --reap
      DROP TABLE t;
      --disconnect con1
      

      non-debug 3e03a45aa4c69e5aa76c9396547797a895a98edc

      2024-11-03 15:09:26 0x7fd9e1c5ec40  InnoDB: Assertion failure in file /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/trx/trx0trx.cc line 236
      InnoDB: Failing assertion: UT_LIST_GET_LEN(trx->lock.trx_locks) == 0
       
      #2  <signal handler called>
      #3  __pthread_kill_implementation (threadid=<optimized out>, signo=signo@entry=6, no_tid=no_tid@entry=0) at ./nptl/pthread_kill.c:44
      #4  0x00007fd9e17cad9f in __pthread_kill_internal (signo=6, threadid=<optimized out>) at ./nptl/pthread_kill.c:78
      #5  0x00007fd9e177bf32 in __GI_raise (sig=sig@entry=6) at ../sysdeps/posix/raise.c:26
      #6  0x00007fd9e1766472 in __GI_abort () at ./stdlib/abort.c:79
      #7  0x00005583d762a611 in ut_dbg_assertion_failed (expr=expr@entry=0x5583d83ffcc8 "UT_LIST_GET_LEN(trx->lock.trx_locks) == 0", file=file@entry=0x5583d83ffb88 "/data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/trx/trx0trx.cc", line=line@entry=236) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/ut/ut0dbg.cc:60
      #8  0x00005583d7628216 in TrxFactory::destroy (trx=0x7fd9d69f6680) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/trx/trx0trx.cc:236
      #9  Pool<trx_t, TrxFactory, TrxPoolLock>::~Pool (this=0x5583d9ba6bf8, __in_chrg=<optimized out>) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/include/ut0pool.h:94
      #10 ut_allocator<Pool<trx_t, TrxFactory, TrxPoolLock>, true>::destroy (p=0x5583d9ba6bf8, this=<synthetic pointer>) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/include/ut0new.h:445
      #11 ut_delete<Pool<trx_t, TrxFactory, TrxPoolLock> > (ptr=0x5583d9ba6bf8) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/include/ut0new.h:976
      #12 PoolManager<Pool<trx_t, TrxFactory, TrxPoolLock>, TrxPoolManagerLock>::destroy (this=0x5583d9ba6b78) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/include/ut0pool.h:341
      #13 PoolManager<Pool<trx_t, TrxFactory, TrxPoolLock>, TrxPoolManagerLock>::~PoolManager (this=0x5583d9ba6b78, __in_chrg=<optimized out>) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/include/ut0pool.h:220
      #14 ut_allocator<PoolManager<Pool<trx_t, TrxFactory, TrxPoolLock>, TrxPoolManagerLock>, true>::destroy (p=0x5583d9ba6b78, this=<synthetic pointer>) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/include/ut0new.h:445
      #15 ut_delete<PoolManager<Pool<trx_t, TrxFactory, TrxPoolLock>, TrxPoolManagerLock> > (ptr=0x5583d9ba6b78) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/include/ut0new.h:976
      #16 trx_pool_close () at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/trx/trx0trx.cc:320
      #17 0x00005583d7e51319 in innodb_shutdown () at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/srv/srv0start.cc:2089
      #18 0x00005583d7d5972f in innobase_end () at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/handler/ha_innodb.cc:4309
      #19 innobase_end () at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/storage/innobase/handler/ha_innodb.cc:4297
      #20 0x00005583d7a45172 in ha_finalize_handlerton (plugin=0x5583d9ac9200) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/sql/handler.cc:605
      #21 0x00005583d77cdcfd in plugin_deinitialize (plugin=0x5583d9ac9200, ref_check=ref_check@entry=true) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/sql/sql_plugin.cc:1274
      #22 0x00005583d77cfd76 in reap_plugins () at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/sql/sql_plugin.cc:1345
      #23 0x00005583d77d148c in plugin_shutdown () at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/sql/sql_plugin.cc:2086
      #24 0x00005583d769c3ea in clean_up (print_message=true) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/sql/mysqld.cc:2006
      #25 clean_up (print_message=<optimized out>) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/sql/mysqld.cc:1967
      #26 0x00005583d76a7aa3 in mysqld_main (argc=<optimized out>, argv=<optimized out>) at /data/bld/preview-vector-rel-bb-11.6-MDEV-32887-vector/sql/mysqld.cc:6193
      #27 0x00007fd9e17671ca in __libc_start_call_main (main=main@entry=0x5583d7652d00 <main(int, char**)>, argc=argc@entry=23, argv=argv@entry=0x7ffde578a0e8) at ../sysdeps/nptl/libc_start_call_main.h:58
      #28 0x00007fd9e1767285 in __libc_start_main_impl (main=0x5583d7652d00 <main(int, char**)>, argc=23, argv=0x7ffde578a0e8, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7ffde578a0d8) at ../csu/libc-start.c:360
      #29 0x00005583d769ab41 in _start ()
      

      non-debug ASAN 3e03a45aa4c69e5aa76c9396547797a895a98edc

      ==643330==ERROR: AddressSanitizer: use-after-poison on address 0x7f3cf35f3f78 at pc 0x563cc8779692 bp 0x7f3ced0dea40 sp 0x7f3ced0dea38
      READ of size 8 at 0x7f3cf35f3f78 thread T10
      2024-11-03 15:10:19 0 [Note] /mnt8t/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/mariadbd (initiated by: unknown): Normal shutdown
          #0 0x563cc8779691 in page_id_t::operator==(page_id_t const&) const /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/include/buf0types.h:100
          #1 0x563cc8779691 in lock_sys_t::get_first(hash_cell_t const&, page_id_t, unsigned long) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/include/lock0priv.h:541
          #2 0x563cc8779691 in lock_rec_inherit_to_gap<> /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/lock/lock0lock.cc:2499
          #3 0x563cc878b19c in lock_update_delete(buf_block_t const*, unsigned char const*) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/lock/lock0lock.cc:3498
          #4 0x563cc8ae0ac1 in btr_cur_optimistic_delete(btr_cur_t*, unsigned long, mtr_t*) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/btr/btr0cur.cc:4402
          #5 0x563cc8d07004 in row_undo_ins_remove_sec_low /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/row/row0uins.cc:301
          #6 0x563cc8d08861 in row_undo_ins_remove_sec /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/row/row0uins.cc:336
          #7 0x563cc8d08861 in row_undo_ins_remove_sec_rec /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/row/row0uins.cc:530
          #8 0x563cc8d08861 in row_undo_ins(undo_node_t*, que_thr_t*) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/row/row0uins.cc:582
          #9 0x563cc89ad470 in row_undo /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/row/row0undo.cc:399
          #10 0x563cc89ad470 in row_undo_step(que_thr_t*) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/row/row0undo.cc:440
          #11 0x563cc8892808 in que_thr_step /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/que/que0que.cc:552
          #12 0x563cc8892808 in que_run_threads_low /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/que/que0que.cc:610
          #13 0x563cc8892808 in que_run_threads(que_thr_t*) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/que/que0que.cc:630
          #14 0x563cc8a18fb4 in trx_t::rollback_low(trx_savept_t*) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/trx/trx0roll.cc:129
          #15 0x563cc8a13095 in trx_rollback_for_mysql_low /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/trx/trx0roll.cc:203
          #16 0x563cc8a13095 in trx_rollback_for_mysql(trx_t*) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/trx/trx0roll.cc:238
          #17 0x563cc867666f in innobase_rollback /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/handler/ha_innodb.cc:4637
          #18 0x563cc7b3e0cc in ha_rollback_trans(THD*, bool) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/handler.cc:2342
          #19 0x563cc76d5979 in trans_rollback(THD*) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/transaction.cc:382
          #20 0x563cc70a2814 in THD::cleanup() /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/sql_class.cc:1658
          #21 0x563cc6e1bede in unlink_thd(THD*) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/mysqld.cc:2862
          #22 0x563cc76964c5 in do_handle_one_connection(CONNECT*, bool) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/sql_connect.cc:1459
          #23 0x563cc76974b4 in handle_one_connection /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/sql_connect.cc:1350
          #24 0x563cc842d6f7 in pfs_spawn_thread /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/perfschema/pfs.cc:2198
          #25 0x7f3cfbea8043 in start_thread nptl/pthread_create.c:442
          #26 0x7f3cfbf2861b in clone3 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
       
      0x7f3cf35f3f78 is located 6008 bytes inside of 4194304-byte region [0x7f3cf35f2800,0x7f3cf39f2800)
      allocated by thread T0 here:
          #0 0x7f3cfc4b7bf8 in __interceptor_memalign ../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:99
          #1 0x563cc8a4d509 in aligned_malloc(unsigned long, unsigned long) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/include/aligned.h:26
          #2 0x563cc8a4d509 in Pool<trx_t, TrxFactory, TrxPoolLock>::Pool(unsigned long) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/include/ut0pool.h:68
          #3 0x563cc8a4d509 in PoolManager<Pool<trx_t, TrxFactory, TrxPoolLock>, TrxPoolManagerLock>::add_pool(unsigned long) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/include/ut0pool.h:304
          #4 0x563cc8a46b3f in PoolManager<Pool<trx_t, TrxFactory, TrxPoolLock>, TrxPoolManagerLock>::create() /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/include/ut0pool.h:329
          #5 0x563cc8a46b3f in PoolManager<Pool<trx_t, TrxFactory, TrxPoolLock>, TrxPoolManagerLock>::PoolManager(unsigned long) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/include/ut0pool.h:215
          #6 0x563cc8a46b3f in trx_pool_init() /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/trx/trx0trx.cc:311
          #7 0x563cc89cd9e0 in srv_boot() /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/srv/srv0srv.cc:615
          #8 0x563cc6c7c500 in srv_start(bool) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/srv/srv0start.cc:1252
          #9 0x563cc86b9341 in innodb_init /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/handler/ha_innodb.cc:4235
          #10 0x563cc7b3ae68 in ha_initialize_handlerton(st_plugin_int*) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/handler.cc:741
          #11 0x563cc725842a in plugin_do_initialize /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/sql_plugin.cc:1454
          #12 0x563cc7269c3e in plugin_initialize /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/sql_plugin.cc:1507
          #13 0x563cc726d3fb in plugin_init(int*, char**, int) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/sql_plugin.cc:1751
          #14 0x563cc6e20c9d in init_server_components /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/mysqld.cc:5323
          #15 0x563cc6e2c83e in mysqld_main(int, char**) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/mysqld.cc:6002
          #16 0x7f3cfbe461c9 in __libc_start_call_main ../sysdeps/nptl/libc_start_call_main.h:58
       
      Thread T10 created by T0 here:
          #0 0x7f3cfc449726 in __interceptor_pthread_create ../../../../src/libsanitizer/asan/asan_interceptors.cpp:207
          #1 0x563cc8439db6 in my_thread_create /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/perfschema/my_thread.h:38
          #2 0x563cc8439db6 in pfs_spawn_thread_v1 /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/perfschema/pfs.cc:2249
          #3 0x563cc6e1d681 in inline_mysql_thread_create /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/include/mysql/psi/mysql_thread.h:1139
          #4 0x563cc6e1d681 in create_thread_to_handle_connection(CONNECT*) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/mysqld.cc:6271
          #5 0x563cc6e2a9f5 in handle_accepted_socket(st_mysql_socket, st_mysql_socket) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/mysqld.cc:6395
          #6 0x563cc6e2b647 in handle_connections_sockets() /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/mysqld.cc:6508
          #7 0x563cc6e2d10c in mysqld_main(int, char**) /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/sql/mysqld.cc:6166
          #8 0x7f3cfbe461c9 in __libc_start_call_main ../sysdeps/nptl/libc_start_call_main.h:58
       
      SUMMARY: AddressSanitizer: use-after-poison /data/bld/preview-vector-rel-asan-bb-11.6-MDEV-32887-vector/storage/innobase/include/buf0types.h:100 in page_id_t::operator==(page_id_t const&) const
      Shadow bytes around the buggy address:
        0x0fe81e6b6790: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
        0x0fe81e6b67a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
        0x0fe81e6b67b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
        0x0fe81e6b67c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
        0x0fe81e6b67d0: 00 f7 f7 04 00 00 00 00 f7 f7 f7 f7 f7 f7 f7 f7
      =>0x0fe81e6b67e0: f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7[f7]
        0x0fe81e6b67f0: f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7
        0x0fe81e6b6800: f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7
        0x0fe81e6b6810: f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7
        0x0fe81e6b6820: f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7
        0x0fe81e6b6830: f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7 f7
      Shadow byte legend (one shadow byte represents 8 application bytes):
        Addressable:           00
        Partially addressable: 01 02 03 04 05 06 07 
        Heap left redzone:       fa
        Freed heap region:       fd
        Stack left redzone:      f1
        Stack mid redzone:       f2
        Stack right redzone:     f3
        Stack after return:      f5
        Stack use after scope:   f8
        Global redzone:          f9
        Global init order:       f6
        Poisoned by user:        f7
        Container overflow:      fc
        Array cookie:            ac
        Intra object redzone:    bb
        ASan internal:           fe
        Left alloca redzone:     ca
        Right alloca redzone:    cb
      ==643330==ABORTING
      

      debug 3e03a45aa4c69e5aa76c9396547797a895a98edc

      mariadbd: /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/storage/innobase/row/row0sel.cc:4655: dberr_t row_search_mvcc(byte*, page_cur_mode_t, row_prebuilt_t*, ulint, ulint): Assertion `prebuilt->sql_stat_start || prebuilt->table->no_rollback()' failed.
      241103 15:11:11 [ERROR] mysqld got signal 6 ;
       
      #10 0x00007f6c70e53e32 in __GI___assert_fail (assertion=0x555e78a70688 "prebuilt->sql_stat_start || prebuilt->table->no_rollback()", file=0x555e78a6ea10 "/data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/storage/innobase/row/row0sel.cc", line=4655, function=0x555e78a70610 "dberr_t row_search_mvcc(byte*, page_cur_mode_t, row_prebuilt_t*, ulint, ulint)") at ./assert/assert.c:101
      #11 0x0000555e780680c3 in row_search_mvcc (buf=buf@entry=0x7f6c4006b208 "\244", mode=mode@entry=PAGE_CUR_GE, prebuilt=prebuilt@entry=0x7f6c4006c738, match_mode=match_mode@entry=1, direction=direction@entry=0) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/storage/innobase/row/row0sel.cc:4655
      #12 0x0000555e77ccb4e7 in ha_innobase::index_read (this=0x7f6c4006b600, buf=0x7f6c4006b208 "\244", key_ptr=<optimized out>, key_len=<optimized out>, find_flag=<optimized out>) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/storage/innobase/handler/ha_innodb.cc:8989
      #13 0x0000555e76ca2392 in handler::index_read_map (this=0x7f6c4006b600, buf=0x7f6c4006b208 "\244", key=0x7f6c3bffd9a0 "", keypart_map=<optimized out>, find_flag=HA_READ_KEY_EXACT) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/handler.h:4235
      #14 0x0000555e7706ddce in handler::index_read_idx_map (this=0x7f6c4006b600, buf=0x7f6c4006b208 "\244", index=<optimized out>, key=0x7f6c3bffd9a0 "", keypart_map=18446744073709551615, find_flag=HA_READ_KEY_EXACT) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/handler.cc:7339
      #15 0x0000555e77089cf1 in handler::ha_index_read_idx_map (this=this@entry=0x7f6c4006b600, buf=0x7f6c4006b208 "\244", index=index@entry=0, key=key@entry=0x7f6c3bffd9a0 "", keypart_map=keypart_map@entry=18446744073709551615, find_flag=find_flag@entry=HA_READ_KEY_EXACT) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/handler.cc:3836
      #16 0x0000555e77750033 in mhnsw_invalidate (table=table@entry=0x7f6c40210cb8, rec=rec@entry=0x7f6c40061308 "\001", keyinfo=keyinfo@entry=0x7f6c40060388) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/vector_mhnsw.cc:1407
      #17 0x0000555e760e2b1d in TABLE::hlindexes_on_delete (this=this@entry=0x7f6c40210cb8, buf=buf@entry=0x7f6c40061308 "\001") at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/sql_base.cc:9976
      #18 0x0000555e770b00bb in handler::ha_delete_row (this=this@entry=0x7f6c402055c0, buf=0x7f6c40061308 "\001") at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/handler.cc:8300
      #19 0x0000555e761d31e2 in TABLE::delete_row (this=this@entry=0x7f6c40210cb8) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/sql_delete.cc:295
      #20 0x0000555e761c9ab6 in Sql_cmd_delete::delete_from_single_table (this=this@entry=0x7f6c34016808, thd=thd@entry=0x7f6c34000d58) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/sql_delete.cc:899
      #21 0x0000555e761ceb7f in Sql_cmd_delete::execute_inner (this=0x7f6c34016808, thd=0x7f6c34000d58) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/sql_delete.cc:1885
      #22 0x0000555e7643b266 in Sql_cmd_dml::execute (this=0x7f6c34016808, thd=0x7f6c34000d58) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/sql_select.cc:34261
      #23 0x0000555e7633e868 in mysql_execute_command (thd=thd@entry=0x7f6c34000d58, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=false) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/sql_parse.cc:4404
      #24 0x0000555e76350415 in mysql_parse (thd=thd@entry=0x7f6c34000d58, rawbuf=<optimized out>, length=<optimized out>, parser_state=parser_state@entry=0x7f6c3bffe420) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/sql_parse.cc:7888
      #25 0x0000555e76356de9 in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x7f6c34000d58, packet=packet@entry=0x7f6c3400b419 "DELETE FROM t", packet_length=packet_length@entry=13, blocking=blocking@entry=true) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/sql_parse.cc:1892
      #26 0x0000555e7635f5da in do_command (thd=0x7f6c34000d58, blocking=blocking@entry=true) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/sql_parse.cc:1405
      #27 0x0000555e7685fdad in do_handle_one_connection (connect=<optimized out>, connect@entry=0x555e7d0ac2d8, put_in_cache=put_in_cache@entry=true) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/sql_connect.cc:1448
      #28 0x0000555e76860c69 in handle_one_connection (arg=0x555e7d0ac2d8) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/sql/sql_connect.cc:1350
      #29 0x0000555e77a45985 in pfs_spawn_thread (arg=0x555e7d078048) at /data/bld/preview-vector-ubsan-bb-11.6-MDEV-32887-vector/storage/perfschema/pfs.cc:2198
      #30 0x00007f6c70ea8044 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
      #31 0x00007f6c70f2861c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
      

      Attachments

        Issue Links

          Activity

            People

              serg Sergei Golubchik
              elenst Elena Stepanova
              Votes:
              0 Vote for this issue
              Watchers:
              3 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.