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

Assertion `(mem_root->flags & 4) == 0' failed upon PS/SP creating a table

    XMLWordPrintable

Details

    Description

      I understand that the variations of the test case below are all the same, but I'm putting them here to make the stack traces searchable in hope to spare some time on failure analysis, as chasing these endless assertion failures which nobody is fixing is getting really annoying and time-consuming.

      CREATE TABLE t1 (a INT);
      CREATE TABLE t2 (b INT);
      PREPARE stmt FROM 'CREATE TABLE IF NOT EXISTS t2 SELECT * FROM t1';
      EXECUTE stmt;
      DROP TABLE t2;
      EXECUTE stmt;
       
      DEALLOCATE PREPARE stmt;
      DROP TABLE t1, t2;
      

      Variation with a view (a slightly different stack trace)

      CREATE TABLE t1 (a INT);
      CREATE VIEW v1 AS SELECT * FROM t1;
      CREATE TABLE t2 (b INT);
      PREPARE stmt FROM 'CREATE TABLE IF NOT EXISTS t2 SELECT * FROM v1';
      EXECUTE stmt;
      DROP TABLE t2;
      EXECUTE stmt;
       
      DEALLOCATE PREPARE stmt;
      DROP VIEW v1;
      DROP TABLE t1, t2;
      

      Variation with SP (yet different stack trace)

      CREATE TABLE t1 (a INT);
      CREATE VIEW v1 AS SELECT * FROM t1;
      CREATE TABLE t2 (b INT);
      CREATE PROCEDURE pr() CREATE TABLE IF NOT EXISTS t2 SELECT * FROM v1;
      CALL pr();
      DROP TABLE t2;
      CALL pr();
       
      DEALLOCATE PREPARE stmt;
      DROP VIEW v1;
      DROP TABLE t1, t2;
      

      Stack traces:

      10.11 14f96a2e08073e7fa4aee5b182ca0111380089ad

      mariadbd: /data/bld/10.11-asan-ubsan/mysys/my_alloc.c:278: alloc_root: Assertion `(mem_root->flags & 4) == 0' failed.
      260308 21:26:24 [ERROR] /share8t/bld/10.11-asan-ubsan/sql/mariadbd got signal 6 ;
       
      #9  0x00007f4d31645395 in __assert_fail_base (fmt=0x7f4d317b9a90 "%s%s%s:%u: %s%sAssertion `%s' failed.\n%n", assertion=assertion@entry=0x562fd689f300 "(mem_root->flags & 4) == 0", file=file@entry=0x562fd689f000 "/data/bld/10.11-asan-ubsan/mysys/my_alloc.c", line=line@entry=278, function=function@entry=0x562fd689f6e0 <__PRETTY_FUNCTION__.1> "alloc_root") at ./assert/assert.c:92
      #10 0x00007f4d31653eb2 in __GI___assert_fail (assertion=assertion@entry=0x562fd689f300 "(mem_root->flags & 4) == 0", file=file@entry=0x562fd689f000 "/data/bld/10.11-asan-ubsan/mysys/my_alloc.c", line=line@entry=278, function=function@entry=0x562fd689f6e0 <__PRETTY_FUNCTION__.1> "alloc_root") at ./assert/assert.c:101
      #11 0x0000562fd5a43e33 in alloc_root (mem_root=0x619000059f28, length=<optimized out>) at /data/bld/10.11-asan-ubsan/mysys/my_alloc.c:278
      #12 0x0000562fd1e95858 in Sql_alloc::operator new (size=size@entry=16, mem_root=mem_root@entry=0x619000059f28) at /data/bld/10.11-asan-ubsan/sql/sql_alloc.h:37
      #13 0x0000562fd1e9632c in base_list::push_back (this=this@entry=0x62d00026ec30, info=info@entry=0x62d00026f070, mem_root=mem_root@entry=0x619000059f28) at /data/bld/10.11-asan-ubsan/sql/sql_list.h:193
      #14 0x0000562fd24c1a5f in List<TABLE_LIST>::push_back (mem_root=0x619000059f28, a=0x62d00026f070, this=<optimized out>) at /data/bld/10.11-asan-ubsan/sql/sql_list.h:504
      #15 st_select_lex::save_leaf_tables (this=this@entry=0x62d00026ea00, thd=0x62c0000b0218) at /data/bld/10.11-asan-ubsan/sql/sql_lex.cc:5831
      #16 0x0000562fd291be06 in JOIN::optimize_inner (this=this@entry=0x62d00005a960) at /data/bld/10.11-asan-ubsan/sql/sql_select.cc:2306
      #17 0x0000562fd29236a0 in JOIN::optimize (this=this@entry=0x62d00005a960) at /data/bld/10.11-asan-ubsan/sql/sql_select.cc:1967
      #18 0x0000562fd2924a4b in mysql_select (thd=thd@entry=0x62c0000b0218, tables=<optimized out>, fields=..., conds=conds@entry=0x0, og_num=og_num@entry=0, order=order@entry=0x0, group=<optimized out>, having=<optimized out>, proc_param=<optimized out>, select_options=<optimized out>, result=<optimized out>, unit=<optimized out>, select_lex=<optimized out>) at /data/bld/10.11-asan-ubsan/sql/sql_select.cc:5271
      #19 0x0000562fd2925cc4 in handle_select (thd=thd@entry=0x62c0000b0218, lex=lex@entry=0x62d00026c448, result=result@entry=0x62d00005a810, setup_tables_done_option=setup_tables_done_option@entry=0) at /data/bld/10.11-asan-ubsan/sql/sql_select.cc:601
      #20 0x0000562fd2b2592d in Sql_cmd_create_table_like::execute (this=<optimized out>, thd=0x62c0000b0218) at /data/bld/10.11-asan-ubsan/sql/sql_table.cc:13105
      #21 0x0000562fd2615b21 in mysql_execute_command (thd=0x62c0000b0218, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=true) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:6201
      #22 0x0000562fd2711830 in Prepared_statement::execute (this=this@entry=0x619000059b98, expanded_query=expanded_query@entry=0x7f4d26a50c20, open_cursor=open_cursor@entry=false) at /data/bld/10.11-asan-ubsan/sql/sql_prepare.cc:5310
      #23 0x0000562fd2715a1a in Prepared_statement::execute_loop (this=this@entry=0x619000059b98, expanded_query=expanded_query@entry=0x7f4d26a50c20, open_cursor=open_cursor@entry=false, packet=packet@entry=0x0, packet_end=packet_end@entry=0x0) at /data/bld/10.11-asan-ubsan/sql/sql_prepare.cc:4711
      #24 0x0000562fd2717e4b in mysql_sql_stmt_execute (thd=thd@entry=0x62c0000b0218) at /data/bld/10.11-asan-ubsan/sql/sql_prepare.cc:3738
      #25 0x0000562fd25f836a in mysql_execute_command (thd=thd@entry=0x62c0000b0218, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=false) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:4058
      #26 0x0000562fd261a36c in mysql_parse (thd=thd@entry=0x62c0000b0218, rawbuf=<optimized out>, length=<optimized out>, parser_state=parser_state@entry=0x7f4d26a51ab0) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:8223
      #27 0x0000562fd2623719 in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x62c0000b0218, packet=packet@entry=0x62900024e219 "EXECUTE stmt", packet_length=packet_length@entry=12, blocking=blocking@entry=true) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:1924
      #28 0x0000562fd263041e in do_command (thd=thd@entry=0x62c0000b0218, blocking=blocking@entry=true) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:1434
      #29 0x0000562fd2e2cdb8 in do_handle_one_connection (connect=<optimized out>, connect@entry=0x6080000039b8, put_in_cache=put_in_cache@entry=true) at /data/bld/10.11-asan-ubsan/sql/sql_connect.cc:1475
      #30 0x0000562fd2e2df15 in handle_one_connection (arg=0x6080000039b8) at /data/bld/10.11-asan-ubsan/sql/sql_connect.cc:1387
      #31 0x0000562fd47b3327 in pfs_spawn_thread (arg=0x617000005b98) at /data/bld/10.11-asan-ubsan/storage/perfschema/pfs.cc:2201
      #32 0x00007f4d316a81c4 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
      #33 0x00007f4d3172885c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
      

      mariadbd: /data/bld/10.11-asan-ubsan/mysys/my_alloc.c:278: alloc_root: Assertion `(mem_root->flags & 4) == 0' failed.
      260308 21:27:42 [ERROR] /share8t/bld/10.11-asan-ubsan/sql/mariadbd got signal 6 ;
       
      #9  0x00007f8cdae45395 in __assert_fail_base (fmt=0x7f8cdafb9a90 "%s%s%s:%u: %s%sAssertion `%s' failed.\n%n", assertion=assertion@entry=0x555d22afc300 "(mem_root->flags & 4) == 0", file=file@entry=0x555d22afc000 "/data/bld/10.11-asan-ubsan/mysys/my_alloc.c", line=line@entry=278, function=function@entry=0x555d22afc6e0 <__PRETTY_FUNCTION__.1> "alloc_root") at ./assert/assert.c:92
      #10 0x00007f8cdae53eb2 in __GI___assert_fail (assertion=assertion@entry=0x555d22afc300 "(mem_root->flags & 4) == 0", file=file@entry=0x555d22afc000 "/data/bld/10.11-asan-ubsan/mysys/my_alloc.c", line=line@entry=278, function=function@entry=0x555d22afc6e0 <__PRETTY_FUNCTION__.1> "alloc_root") at ./assert/assert.c:101
      #11 0x0000555d21ca0e33 in alloc_root (mem_root=0x61900005a428, length=<optimized out>) at /data/bld/10.11-asan-ubsan/mysys/my_alloc.c:278
      #12 0x0000555d1e2ad794 in Query_arena::calloc (this=this@entry=0x62c0000b0230, size=size@entry=120) at /data/bld/10.11-asan-ubsan/sql/sql_class.h:1257
      #13 0x0000555d1e6366af in mysql_derived_merge (thd=<optimized out>, lex=lex@entry=0x62d00026c448, derived=derived@entry=0x62d00026f070) at /data/bld/10.11-asan-ubsan/sql/sql_derived.cc:394
      #14 0x0000555d1e63945c in mysql_handle_single_derived (lex=lex@entry=0x62d00026c448, derived=derived@entry=0x62d00026f070, phases=phases@entry=8) at /data/bld/10.11-asan-ubsan/sql/sql_derived.cc:203
      #15 0x0000555d1eeffbd0 in TABLE_LIST::handle_derived (this=this@entry=0x62d00026f070, lex=lex@entry=0x62d00026c448, phases=phases@entry=8) at /data/bld/10.11-asan-ubsan/sql/table.cc:9742
      #16 0x0000555d1e62f5d7 in LEX::handle_list_of_derived (this=this@entry=0x62d00026c448, table_list=<optimized out>, phases=phases@entry=8) at /data/bld/10.11-asan-ubsan/sql/sql_lex.h:4633
      #17 0x0000555d1e718f5a in st_select_lex::handle_derived (this=this@entry=0x62d00026ea00, lex=0x62d00026c448, phases=phases@entry=8) at /data/bld/10.11-asan-ubsan/sql/sql_lex.cc:5135
      #18 0x0000555d1eb777ef in JOIN::optimize_inner (this=this@entry=0x62d00005a960) at /data/bld/10.11-asan-ubsan/sql/sql_select.cc:2194
      #19 0x0000555d1eb806a0 in JOIN::optimize (this=this@entry=0x62d00005a960) at /data/bld/10.11-asan-ubsan/sql/sql_select.cc:1967
      #20 0x0000555d1eb81a4b in mysql_select (thd=thd@entry=0x62c0000b0218, tables=<optimized out>, fields=..., conds=conds@entry=0x0, og_num=og_num@entry=0, order=order@entry=0x0, group=<optimized out>, having=<optimized out>, proc_param=<optimized out>, select_options=<optimized out>, result=<optimized out>, unit=<optimized out>, select_lex=<optimized out>) at /data/bld/10.11-asan-ubsan/sql/sql_select.cc:5271
      #21 0x0000555d1eb82cc4 in handle_select (thd=thd@entry=0x62c0000b0218, lex=lex@entry=0x62d00026c448, result=result@entry=0x62d00005a810, setup_tables_done_option=setup_tables_done_option@entry=0) at /data/bld/10.11-asan-ubsan/sql/sql_select.cc:601
      #22 0x0000555d1ed8292d in Sql_cmd_create_table_like::execute (this=<optimized out>, thd=0x62c0000b0218) at /data/bld/10.11-asan-ubsan/sql/sql_table.cc:13105
      #23 0x0000555d1e872b21 in mysql_execute_command (thd=0x62c0000b0218, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=true) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:6201
      #24 0x0000555d1e96e830 in Prepared_statement::execute (this=this@entry=0x61900005a098, expanded_query=expanded_query@entry=0x7f8cd0d94c20, open_cursor=open_cursor@entry=false) at /data/bld/10.11-asan-ubsan/sql/sql_prepare.cc:5310
      #25 0x0000555d1e972a1a in Prepared_statement::execute_loop (this=this@entry=0x61900005a098, expanded_query=expanded_query@entry=0x7f8cd0d94c20, open_cursor=open_cursor@entry=false, packet=packet@entry=0x0, packet_end=packet_end@entry=0x0) at /data/bld/10.11-asan-ubsan/sql/sql_prepare.cc:4711
      #26 0x0000555d1e974e4b in mysql_sql_stmt_execute (thd=thd@entry=0x62c0000b0218) at /data/bld/10.11-asan-ubsan/sql/sql_prepare.cc:3738
      #27 0x0000555d1e85536a in mysql_execute_command (thd=thd@entry=0x62c0000b0218, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=false) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:4058
      #28 0x0000555d1e87736c in mysql_parse (thd=thd@entry=0x62c0000b0218, rawbuf=<optimized out>, length=<optimized out>, parser_state=parser_state@entry=0x7f8cd0d95ab0) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:8223
      #29 0x0000555d1e880719 in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x62c0000b0218, packet=packet@entry=0x62900024e219 "EXECUTE stmt", packet_length=packet_length@entry=12, blocking=blocking@entry=true) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:1924
      #30 0x0000555d1e88d41e in do_command (thd=thd@entry=0x62c0000b0218, blocking=blocking@entry=true) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:1434
      #31 0x0000555d1f089db8 in do_handle_one_connection (connect=<optimized out>, connect@entry=0x6080000039b8, put_in_cache=put_in_cache@entry=true) at /data/bld/10.11-asan-ubsan/sql/sql_connect.cc:1475
      #32 0x0000555d1f08af15 in handle_one_connection (arg=0x6080000039b8) at /data/bld/10.11-asan-ubsan/sql/sql_connect.cc:1387
      #33 0x0000555d20a10327 in pfs_spawn_thread (arg=0x617000005b98) at /data/bld/10.11-asan-ubsan/storage/perfschema/pfs.cc:2201
      #34 0x00007f8cdaea81c4 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
      #35 0x00007f8cdaf2885c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
      

      mariadbd: /data/bld/10.11-asan-ubsan/mysys/my_alloc.c:278: alloc_root: Assertion `(mem_root->flags & 4) == 0' failed.
      260308 21:28:32 [ERROR] /share8t/bld/10.11-asan-ubsan/sql/mariadbd got signal 6 ;
       
      #9  0x00007fabcbe45395 in __assert_fail_base (fmt=0x7fabcbfb9a90 "%s%s%s:%u: %s%sAssertion `%s' failed.\n%n", assertion=assertion@entry=0x563b8e59f300 "(mem_root->flags & 4) == 0", file=file@entry=0x563b8e59f000 "/data/bld/10.11-asan-ubsan/mysys/my_alloc.c", line=line@entry=278, function=function@entry=0x563b8e59f6e0 <__PRETTY_FUNCTION__.1> "alloc_root") at ./assert/assert.c:92
      #10 0x00007fabcbe53eb2 in __GI___assert_fail (assertion=assertion@entry=0x563b8e59f300 "(mem_root->flags & 4) == 0", file=file@entry=0x563b8e59f000 "/data/bld/10.11-asan-ubsan/mysys/my_alloc.c", line=line@entry=278, function=function@entry=0x563b8e59f6e0 <__PRETTY_FUNCTION__.1> "alloc_root") at ./assert/assert.c:101
      #11 0x0000563b8d743e33 in alloc_root (mem_root=0x625000249178, length=<optimized out>) at /data/bld/10.11-asan-ubsan/mysys/my_alloc.c:278
      #12 0x0000563b89ce4684 in parse_escaped_string (ptr=0x625000264fc0 "select `test`.`t1`.`a` AS `a` from `test`.`t1`\nmd5=5e6eaf216e7b016fcedfd4e1113517af\nupdatable=1\nalgorithm=0\ndefiner_user=root\ndefiner_host=localhost\nsuid=2\nwith_check_option=0\ntimestamp=00017729981127"..., end=<optimized out>, mem_root=mem_root@entry=0x625000249178, str=str@entry=0x62500024e390) at /data/bld/10.11-asan-ubsan/sql/parse_file.cc:655
      #13 0x0000563b89ce55ba in File_parser::parse (this=this@entry=0x625000264f80, base=base@entry=0x62500024e138 "", mem_root=<optimized out>, parameters=parameters@entry=0x563b905b3a60 <view_parameters>, required=required@entry=15, hook=<optimized out>) at /data/bld/10.11-asan-ubsan/sql/parse_file.cc:853
      #14 0x0000563b8a938a7b in mysql_make_view (thd=thd@entry=0x62c0000b0218, share=share@entry=0x625000264938, table=table@entry=0x62500024e138, open_view_no_parse=open_view_no_parse@entry=false) at /data/bld/10.11-asan-ubsan/sql/sql_view.cc:1389
      #15 0x0000563b89f5e0ab in open_table (thd=thd@entry=0x62c0000b0218, table_list=table_list@entry=0x62500024e138, ot_ctx=ot_ctx@entry=0x7fabc1e07340) at /data/bld/10.11-asan-ubsan/sql/sql_base.cc:2199
      #16 0x0000563b89f66a0f in open_and_process_table (thd=thd@entry=0x62c0000b0218, tables=tables@entry=0x62500024e138, counter=counter@entry=0x7fabc1e07440, flags=flags@entry=0, prelocking_strategy=prelocking_strategy@entry=0x7fabc1e07570, has_prelocking_list=has_prelocking_list@entry=false, ot_ctx=<optimized out>) at /data/bld/10.11-asan-ubsan/sql/sql_base.cc:4228
      #17 0x0000563b89f9a970 in open_tables (thd=thd@entry=0x62c0000b0218, options=..., start=start@entry=0x7fabc1e07450, counter=counter@entry=0x7fabc1e07440, flags=flags@entry=0, prelocking_strategy=prelocking_strategy@entry=0x7fabc1e07570) at /data/bld/10.11-asan-ubsan/sql/sql_base.cc:4713
      #18 0x0000563b89f9e0bb in open_and_lock_tables (thd=thd@entry=0x62c0000b0218, options=..., tables=tables@entry=0x62500024a150, derived=derived@entry=true, flags=flags@entry=0, prelocking_strategy=prelocking_strategy@entry=0x7fabc1e07570) at /data/bld/10.11-asan-ubsan/sql/sql_base.cc:5718
      #19 0x0000563b8a853d16 in open_and_lock_tables (thd=thd@entry=0x62c0000b0218, options=..., tables=<optimized out>, derived=derived@entry=true, flags=flags@entry=0) at /data/bld/10.11-asan-ubsan/sql/sql_base.h:511
      #20 0x0000563b8a825214 in Sql_cmd_create_table_like::execute (this=<optimized out>, thd=0x62c0000b0218) at /data/bld/10.11-asan-ubsan/sql/sql_table.cc:13049
      #21 0x0000563b8a315b21 in mysql_execute_command (thd=0x62c0000b0218, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=false) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:6201
      #22 0x0000563b89dcded2 in sp_instr_stmt::exec_core (this=0x62500024af30, thd=<optimized out>, nextp=0x7fabc1e08c00) at /data/bld/10.11-asan-ubsan/sql/sp_head.cc:3950
      #23 0x0000563b89e07549 in sp_lex_keeper::reset_lex_and_exec_core (this=this@entry=0x62500024af78, thd=thd@entry=0x62c0000b0218, nextp=nextp@entry=0x7fabc1e08c00, open_tables=open_tables@entry=false, instr=instr@entry=0x62500024af30) at /data/bld/10.11-asan-ubsan/sql/sp_head.cc:3661
      #24 0x0000563b89e0aae6 in sp_instr_stmt::execute (this=0x62500024af30, thd=0x62c0000b0218, nextp=<optimized out>) at /data/bld/10.11-asan-ubsan/sql/sp_head.cc:3853
      #25 0x0000563b89e1b889 in sp_head::execute (this=this@entry=0x625000249138, thd=thd@entry=0x62c0000b0218, merge_da_on_success=merge_da_on_success@entry=true) at /data/bld/10.11-asan-ubsan/sql/sp_head.cc:1464
      #26 0x0000563b89e25a21 in sp_head::execute_procedure (this=this@entry=0x625000249138, thd=thd@entry=0x62c0000b0218, args=args@entry=0x62c0000b5648) at /data/bld/10.11-asan-ubsan/sql/sp_head.cc:2483
      #27 0x0000563b8a2b1217 in do_execute_sp (thd=thd@entry=0x62c0000b0218, sp=sp@entry=0x625000249138) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:3101
      #28 0x0000563b8a2c9d44 in Sql_cmd_call::execute (this=<optimized out>, thd=0x62c0000b0218) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:3364
      #29 0x0000563b8a315b21 in mysql_execute_command (thd=thd@entry=0x62c0000b0218, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=false) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:6201
      #30 0x0000563b8a31a36c in mysql_parse (thd=thd@entry=0x62c0000b0218, rawbuf=<optimized out>, length=<optimized out>, parser_state=parser_state@entry=0x7fabc1e0aab0) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:8223
      #31 0x0000563b8a323719 in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x62c0000b0218, packet=packet@entry=0x62900024e219 "CALL pr()", packet_length=packet_length@entry=9, blocking=blocking@entry=true) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:1924
      #32 0x0000563b8a33041e in do_command (thd=thd@entry=0x62c0000b0218, blocking=blocking@entry=true) at /data/bld/10.11-asan-ubsan/sql/sql_parse.cc:1434
      #33 0x0000563b8ab2cdb8 in do_handle_one_connection (connect=<optimized out>, connect@entry=0x6080000039b8, put_in_cache=put_in_cache@entry=true) at /data/bld/10.11-asan-ubsan/sql/sql_connect.cc:1475
      #34 0x0000563b8ab2df15 in handle_one_connection (arg=0x6080000039b8) at /data/bld/10.11-asan-ubsan/sql/sql_connect.cc:1387
      #35 0x0000563b8c4b3327 in pfs_spawn_thread (arg=0x617000005b98) at /data/bld/10.11-asan-ubsan/storage/perfschema/pfs.cc:2201
      #36 0x00007fabcbea81c4 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
      #37 0x00007fabcbf2885c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
      

       

      Attachments

        Activity

          People

            shulga Dmitry Shulga
            elenst Elena Stepanova
            Votes:
            0 Vote for this issue
            Watchers:
            1 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.