|
The parameter is only available in debug builds.
I think that we must allow the B-tree to degrade to a binary tree (each internal node having only 2 child pages). For a binary tree, we should not be able to exceed level 31 without running out of page numbers.
Maybe in this case, the B-tree is degenerating to a linked list, with lots of non-branching internal nodes? btr_discard_only_page_on_level() and btr_compress() aim to avoid that in other code paths.
Side note: INSERT…SELECT between InnoDB tables will cause explicit lock objects to be created. It could be more convenient to debug this with CREATE TEMPORARY TABLE, which should avoid the locking. Or even with have_sequence.inc (avoiding reads from InnoDB tables altogether).
|
|
Another testcase leading to a different stack.
SET SQL_MODE='';
|
USE test;
|
SET GLOBAL innodb_limit_optimistic_INSERT_debug=2;
|
CREATE TABLE t (a INT,b VARCHAR(20),KEY(a));
|
INSERT INTO t (a) VALUES ('a'),('b'),('c'),('d'),('e');
|
INSERT INTO t VALUES (1,''),(2,''),(3,''),(4,''),(5,''),(6,''),(7,'');
|
INSERT INTO t SELECT * FROM t;
|
INSERT INTO t SELECT a,a FROM t;
|
INSERT INTO t SELECT * FROM t;
|
INSERT INTO t SELECT * FROM t;
|
INSERT INTO t SELECT * FROM t;
|
INSERT INTO t SELECT * FROM t;
|
INSERT INTO t SELECT * FROM t;
|
INSERT INTO t SELECT * FROM t;
|
Leads to:
|
10.4.15 eae968f62d285de97ed607c87bc131cd863d5d03 (Debug)
|
mysqld: /test/10.4_dbg/storage/innobase/include/btr0btr.ic:125: void btr_page_set_level(ib_page_t*, page_zip_des_t*, ulint, mtr_t*): Assertion `level <= 50' failed.
|
|
10.4.15 eae968f62d285de97ed607c87bc131cd863d5d03 (Debug)
|
Core was generated by `/test/MD110820-mariadb-10.4.15-linux-x86_64-dbg/bin/mysqld --no-defaults --core'.
|
Program terminated with signal SIGABRT, Aborted.
|
#0 __pthread_kill (threadid=<optimized out>, signo=signo@entry=6)
|
at ../sysdeps/unix/sysv/linux/pthread_kill.c:57
|
[Current thread is 1 (Thread 0x145e2ccae700 (LWP 2564715))]
|
(gdb) bt
|
#0 __pthread_kill (threadid=<optimized out>, signo=signo@entry=6) at ../sysdeps/unix/sysv/linux/pthread_kill.c:57
|
#1 0x000055cceb9248a6 in my_write_core (sig=sig@entry=6) at /test/10.4_dbg/mysys/stacktrace.c:482
|
#2 0x000055cceb0a0cdc in handle_fatal_signal (sig=6) at /test/10.4_dbg/sql/signal_handler.cc:343
|
#3 <signal handler called>
|
#4 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51
|
#5 0x0000145e2af458b1 in __GI_abort () at abort.c:79
|
#6 0x0000145e2af3542a in __assert_fail_base (fmt=0x145e2b0bca38 "%s%s%s:%u: %s%sAssertion `%s' failed.\n%n", assertion=assertion@entry=0x55ccebc07cc1 "level <= 50", file=file@entry=0x55ccebbf9478 "/test/10.4_dbg/storage/innobase/include/btr0btr.ic", line=line@entry=125, function=function@entry=0x55ccebc8dba0 <btr_page_set_level(unsigned char*, page_zip_des_t*, unsigned long, mtr_t*)::__PRETTY_FUNCTION__> "void btr_page_set_level(ib_page_t*, page_zip_des_t*, ulint, mtr_t*)") at assert.c:92
|
#7 0x0000145e2af354a2 in __GI___assert_fail (assertion=assertion@entry=0x55ccebc07cc1 "level <= 50", file=file@entry=0x55ccebbf9478 "/test/10.4_dbg/storage/innobase/include/btr0btr.ic", line=line@entry=125, function=function@entry=0x55ccebc8dba0 <btr_page_set_level(unsigned char*, page_zip_des_t*, unsigned long, mtr_t*)::__PRETTY_FUNCTION__> "void btr_page_set_level(ib_page_t*, page_zip_des_t*, ulint, mtr_t*)") at assert.c:101
|
#8 0x000055cceb53b6e8 in btr_page_set_level (page=page@entry=0x145e0fda4000 "m\vy\025", page_zip=page_zip@entry=0x0, level=level@entry=51, mtr=mtr@entry=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/include/btr0btr.ic:125
|
#9 0x000055cceb540caa in btr_page_empty (block=block@entry=0x145e0f42fd70, page_zip=page_zip@entry=0x0, index=index@entry=0x145e054d2980, level=level@entry=51, mtr=mtr@entry=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:1804
|
#10 0x000055cceb550869 in btr_root_raise_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc77e80, offsets=offsets@entry=0x145e2cc77e40, heap=heap@entry=0x145e2cc77e38, tuple=tuple@entry=0x145e055a7180, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2065
|
#11 0x000055cceb56963e in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc77e80, offsets=offsets@entry=0x145e2cc77e40, heap=heap@entry=0x145e2cc77e38, entry=entry@entry=0x145e055a7180, rec=rec@entry=0x145e2cc77e30, big_rec=0x145e2cc77e28, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3799
|
#12 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=50, tuple=0x145e055a7180, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#13 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7d0e30, split_rec=0x145e05505646 "\200", block=0x145e0f75c650, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#14 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc78e50, offsets=offsets@entry=0x145e2cc78e10, heap=heap@entry=0x145e2cc78e08, tuple=tuple@entry=0x145e055a6780, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#15 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc78e50, offsets=offsets@entry=0x145e2cc78e10, heap=heap@entry=0x145e2cc78e08, entry=entry@entry=0x145e055a6780, rec=rec@entry=0x145e2cc78e00, big_rec=0x145e2cc78df8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#16 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=49, tuple=0x145e055a6780, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#17 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7d0be0, split_rec=0x145e05505626 "\200", block=0x145e0f75c1b0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#18 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc79e20, offsets=offsets@entry=0x145e2cc79de0, heap=heap@entry=0x145e2cc79dd8, tuple=tuple@entry=0x145e055a5d80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#19 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc79e20, offsets=offsets@entry=0x145e2cc79de0, heap=heap@entry=0x145e2cc79dd8, entry=entry@entry=0x145e055a5d80, rec=rec@entry=0x145e2cc79dd0, big_rec=0x145e2cc79dc8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#20 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=48, tuple=0x145e055a5d80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#21 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7d0990, split_rec=0x145e05505606 "\200", block=0x145e0f60b7e0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#22 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7adf0, offsets=offsets@entry=0x145e2cc7adb0, heap=heap@entry=0x145e2cc7ada8, tuple=tuple@entry=0x145e055a5380, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#23 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7adf0, offsets=offsets@entry=0x145e2cc7adb0, heap=heap@entry=0x145e2cc7ada8, entry=entry@entry=0x145e055a5380, rec=rec@entry=0x145e2cc7ada0, big_rec=0x145e2cc7ad98, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#24 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=47, tuple=0x145e055a5380, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#25 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7d0740, split_rec=0x145e055055e6 "\200", block=0x145e0f6cc4c0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#26 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7bdc0, offsets=offsets@entry=0x145e2cc7bd80, heap=heap@entry=0x145e2cc7bd78, tuple=tuple@entry=0x145e055a4980, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#27 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7bdc0, offsets=offsets@entry=0x145e2cc7bd80, heap=heap@entry=0x145e2cc7bd78, entry=entry@entry=0x145e055a4980, rec=rec@entry=0x145e2cc7bd70, big_rec=0x145e2cc7bd68, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#28 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=46, tuple=0x145e055a4980, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#29 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7d04f0, split_rec=0x145e055055c6 "\200", block=0x145e0f5bc4a0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#30 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7cd90, offsets=offsets@entry=0x145e2cc7cd50, heap=heap@entry=0x145e2cc7cd48, tuple=tuple@entry=0x145e055a3f80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#31 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7cd90, offsets=offsets@entry=0x145e2cc7cd50, heap=heap@entry=0x145e2cc7cd48, entry=entry@entry=0x145e055a3f80, rec=rec@entry=0x145e2cc7cd40, big_rec=0x145e2cc7cd38, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#32 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=45, tuple=0x145e055a3f80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#33 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7d02a0, split_rec=0x145e055055a6 "\200", block=0x145e0f7b2890, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#34 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7dd60, offsets=offsets@entry=0x145e2cc7dd20, heap=heap@entry=0x145e2cc7dd18, tuple=tuple@entry=0x145e055a3580, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#35 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7dd60, offsets=offsets@entry=0x145e2cc7dd20, heap=heap@entry=0x145e2cc7dd18, entry=entry@entry=0x145e055a3580, rec=rec@entry=0x145e2cc7dd10, big_rec=0x145e2cc7dd08, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#36 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=44, tuple=0x145e055a3580, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#37 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7d0050, split_rec=0x145e05505586 "\200", block=0x145e0f703cc0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#38 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7ed30, offsets=offsets@entry=0x145e2cc7ecf0, heap=heap@entry=0x145e2cc7ece8, tuple=tuple@entry=0x145e055a2b80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#39 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7ed30, offsets=offsets@entry=0x145e2cc7ecf0, heap=heap@entry=0x145e2cc7ece8, entry=entry@entry=0x145e055a2b80, rec=rec@entry=0x145e2cc7ece0, big_rec=0x145e2cc7ecd8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#40 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=43, tuple=0x145e055a2b80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#41 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cfe00, split_rec=0x145e05505566 "\200", block=0x145e0f7c8a60, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#42 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7fd00, offsets=offsets@entry=0x145e2cc7fcc0, heap=heap@entry=0x145e2cc7fcb8, tuple=tuple@entry=0x145e055a2180, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#43 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc7fd00, offsets=offsets@entry=0x145e2cc7fcc0, heap=heap@entry=0x145e2cc7fcb8, entry=entry@entry=0x145e055a2180, rec=rec@entry=0x145e2cc7fcb0, big_rec=0x145e2cc7fca8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#44 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=42, tuple=0x145e055a2180, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#45 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cfbb0, split_rec=0x145e05505546 "\200", block=0x145e0f7c8810, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#46 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc80cd0, offsets=offsets@entry=0x145e2cc80c90, heap=heap@entry=0x145e2cc80c88, tuple=tuple@entry=0x145e055dc680, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#47 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc80cd0, offsets=offsets@entry=0x145e2cc80c90, heap=heap@entry=0x145e2cc80c88, entry=entry@entry=0x145e055dc680, rec=rec@entry=0x145e2cc80c80, big_rec=0x145e2cc80c78, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#48 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=41, tuple=0x145e055dc680, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#49 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cf960, split_rec=0x145e05505526 "\200", block=0x145e0f7c85c0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#50 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc81ca0, offsets=offsets@entry=0x145e2cc81c60, heap=heap@entry=0x145e2cc81c58, tuple=tuple@entry=0x145e055dbc80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#51 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc81ca0, offsets=offsets@entry=0x145e2cc81c60, heap=heap@entry=0x145e2cc81c58, entry=entry@entry=0x145e055dbc80, rec=rec@entry=0x145e2cc81c50, big_rec=0x145e2cc81c48, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#52 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=40, tuple=0x145e055dbc80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#53 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cf710, split_rec=0x145e05505506 "\200", block=0x145e0f7c8370, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#54 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc82c70, offsets=offsets@entry=0x145e2cc82c30, heap=heap@entry=0x145e2cc82c28, tuple=tuple@entry=0x145e055db280, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#55 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc82c70, offsets=offsets@entry=0x145e2cc82c30, heap=heap@entry=0x145e2cc82c28, entry=entry@entry=0x145e055db280, rec=rec@entry=0x145e2cc82c20, big_rec=0x145e2cc82c18, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#56 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=39, tuple=0x145e055db280, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#57 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cf4c0, split_rec=0x145e055054e6 "\200", block=0x145e0f7c8120, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#58 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc83c40, offsets=offsets@entry=0x145e2cc83c00, heap=heap@entry=0x145e2cc83bf8, tuple=tuple@entry=0x145e055da880, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#59 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc83c40, offsets=offsets@entry=0x145e2cc83c00, heap=heap@entry=0x145e2cc83bf8, entry=entry@entry=0x145e055da880, rec=rec@entry=0x145e2cc83bf0, big_rec=0x145e2cc83be8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#60 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=38, tuple=0x145e055da880, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#61 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cf270, split_rec=0x145e055054c6 "\200", block=0x145e0f5b5350, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#62 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc84c10, offsets=offsets@entry=0x145e2cc84bd0, heap=heap@entry=0x145e2cc84bc8, tuple=tuple@entry=0x145e055d9e80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#63 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc84c10, offsets=offsets@entry=0x145e2cc84bd0, heap=heap@entry=0x145e2cc84bc8, entry=entry@entry=0x145e055d9e80, rec=rec@entry=0x145e2cc84bc0, big_rec=0x145e2cc84bb8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#64 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=37, tuple=0x145e055d9e80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#65 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cf020, split_rec=0x145e055054a6 "\200", block=0x145e0f7c70f0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#66 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc85be0, offsets=offsets@entry=0x145e2cc85ba0, heap=heap@entry=0x145e2cc85b98, tuple=tuple@entry=0x145e055d9480, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#67 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc85be0, offsets=offsets@entry=0x145e2cc85ba0, heap=heap@entry=0x145e2cc85b98, entry=entry@entry=0x145e055d9480, rec=rec@entry=0x145e2cc85b90, big_rec=0x145e2cc85b88, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#68 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=36, tuple=0x145e055d9480, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#69 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cedd0, split_rec=0x145e05505486 "\200", block=0x145e0f7c6ea0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#70 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc86bb0, offsets=offsets@entry=0x145e2cc86b70, heap=heap@entry=0x145e2cc86b68, tuple=tuple@entry=0x145e055d8a80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#71 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc86bb0, offsets=offsets@entry=0x145e2cc86b70, heap=heap@entry=0x145e2cc86b68, entry=entry@entry=0x145e055d8a80, rec=rec@entry=0x145e2cc86b60, big_rec=0x145e2cc86b58, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#72 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=35, tuple=0x145e055d8a80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#73 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7ceb80, split_rec=0x145e05505466 "\200", block=0x145e0f7c6c50, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#74 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc87b80, offsets=offsets@entry=0x145e2cc87b40, heap=heap@entry=0x145e2cc87b38, tuple=tuple@entry=0x145e055d8080, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#75 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc87b80, offsets=offsets@entry=0x145e2cc87b40, heap=heap@entry=0x145e2cc87b38, entry=entry@entry=0x145e055d8080, rec=rec@entry=0x145e2cc87b30, big_rec=0x145e2cc87b28, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#76 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=34, tuple=0x145e055d8080, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#77 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7ce930, split_rec=0x145e05505446 "\200", block=0x145e0f7c6a00, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#78 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc88b50, offsets=offsets@entry=0x145e2cc88b10, heap=heap@entry=0x145e2cc88b08, tuple=tuple@entry=0x145e055d7680, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#79 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc88b50, offsets=offsets@entry=0x145e2cc88b10, heap=heap@entry=0x145e2cc88b08, entry=entry@entry=0x145e055d7680, rec=rec@entry=0x145e2cc88b00, big_rec=0x145e2cc88af8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#80 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=33, tuple=0x145e055d7680, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#81 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7ce6e0, split_rec=0x145e05505426 "\200", block=0x145e0f7c67b0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#82 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc89b20, offsets=offsets@entry=0x145e2cc89ae0, heap=heap@entry=0x145e2cc89ad8, tuple=tuple@entry=0x145e055d6c80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#83 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc89b20, offsets=offsets@entry=0x145e2cc89ae0, heap=heap@entry=0x145e2cc89ad8, entry=entry@entry=0x145e055d6c80, rec=rec@entry=0x145e2cc89ad0, big_rec=0x145e2cc89ac8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#84 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=32, tuple=0x145e055d6c80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#85 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7ce490, split_rec=0x145e05505406 "\200", block=0x145e0f7c6560, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#86 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8aaf0, offsets=offsets@entry=0x145e2cc8aab0, heap=heap@entry=0x145e2cc8aaa8, tuple=tuple@entry=0x145e055d6280, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#87 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8aaf0, offsets=offsets@entry=0x145e2cc8aab0, heap=heap@entry=0x145e2cc8aaa8, entry=entry@entry=0x145e055d6280, rec=rec@entry=0x145e2cc8aaa0, big_rec=0x145e2cc8aa98, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#88 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=31, tuple=0x145e055d6280, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#89 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7ce240, split_rec=0x145e055053e6 "\200", block=0x145e0f7c6310, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#90 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8bac0, offsets=offsets@entry=0x145e2cc8ba80, heap=heap@entry=0x145e2cc8ba78, tuple=tuple@entry=0x145e055d5880, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#91 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8bac0, offsets=offsets@entry=0x145e2cc8ba80, heap=heap@entry=0x145e2cc8ba78, entry=entry@entry=0x145e055d5880, rec=rec@entry=0x145e2cc8ba70, big_rec=0x145e2cc8ba68, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#92 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=30, tuple=0x145e055d5880, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#93 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cdff0, split_rec=0x145e055053c6 "\200", block=0x145e0f7c60c0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#94 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8ca90, offsets=offsets@entry=0x145e2cc8ca50, heap=heap@entry=0x145e2cc8ca48, tuple=tuple@entry=0x145e055d4e80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#95 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8ca90, offsets=offsets@entry=0x145e2cc8ca50, heap=heap@entry=0x145e2cc8ca48, entry=entry@entry=0x145e055d4e80, rec=rec@entry=0x145e2cc8ca40, big_rec=0x145e2cc8ca38, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#96 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=29, tuple=0x145e055d4e80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#97 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cdda0, split_rec=0x145e055053a6 "\200", block=0x145e0f7c5e70, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#98 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8da60, offsets=offsets@entry=0x145e2cc8da20, heap=heap@entry=0x145e2cc8da18, tuple=tuple@entry=0x145e055d4480, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#99 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8da60, offsets=offsets@entry=0x145e2cc8da20, heap=heap@entry=0x145e2cc8da18, entry=entry@entry=0x145e055d4480, rec=rec@entry=0x145e2cc8da10, big_rec=0x145e2cc8da08, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#100 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=28, tuple=0x145e055d4480, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#101 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cdb50, split_rec=0x145e05505386 "\200", block=0x145e0f7c5c20, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#102 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8ea30, offsets=offsets@entry=0x145e2cc8e9f0, heap=heap@entry=0x145e2cc8e9e8, tuple=tuple@entry=0x145e055d3a80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#103 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8ea30, offsets=offsets@entry=0x145e2cc8e9f0, heap=heap@entry=0x145e2cc8e9e8, entry=entry@entry=0x145e055d3a80, rec=rec@entry=0x145e2cc8e9e0, big_rec=0x145e2cc8e9d8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#104 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=27, tuple=0x145e055d3a80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#105 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cd900, split_rec=0x145e05505366 "\200", block=0x145e0f7c59d0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#106 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8fa00, offsets=offsets@entry=0x145e2cc8f9c0, heap=heap@entry=0x145e2cc8f9b8, tuple=tuple@entry=0x145e055d3080, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#107 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc8fa00, offsets=offsets@entry=0x145e2cc8f9c0, heap=heap@entry=0x145e2cc8f9b8, entry=entry@entry=0x145e055d3080, rec=rec@entry=0x145e2cc8f9b0, big_rec=0x145e2cc8f9a8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#108 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=26, tuple=0x145e055d3080, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#109 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cd6b0, split_rec=0x145e05505346 "\200", block=0x145e0f7c5780, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#110 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc909d0, offsets=offsets@entry=0x145e2cc90990, heap=heap@entry=0x145e2cc90988, tuple=tuple@entry=0x145e055d2680, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#111 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc909d0, offsets=offsets@entry=0x145e2cc90990, heap=heap@entry=0x145e2cc90988, entry=entry@entry=0x145e055d2680, rec=rec@entry=0x145e2cc90980, big_rec=0x145e2cc90978, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#112 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=25, tuple=0x145e055d2680, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#113 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cd460, split_rec=0x145e05505326 "\200", block=0x145e0f7c52e0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#114 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc919a0, offsets=offsets@entry=0x145e2cc91960, heap=heap@entry=0x145e2cc91958, tuple=tuple@entry=0x145e055d1c80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#115 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc919a0, offsets=offsets@entry=0x145e2cc91960, heap=heap@entry=0x145e2cc91958, entry=entry@entry=0x145e055d1c80, rec=rec@entry=0x145e2cc91950, big_rec=0x145e2cc91948, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#116 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=24, tuple=0x145e055d1c80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#117 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cd210, split_rec=0x145e05505306 "\200", block=0x145e0f7c5090, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#118 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc92970, offsets=offsets@entry=0x145e2cc92930, heap=heap@entry=0x145e2cc92928, tuple=tuple@entry=0x145e055d1280, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#119 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc92970, offsets=offsets@entry=0x145e2cc92930, heap=heap@entry=0x145e2cc92928, entry=entry@entry=0x145e055d1280, rec=rec@entry=0x145e2cc92920, big_rec=0x145e2cc92918, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#120 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=23, tuple=0x145e055d1280, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#121 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7ccfc0, split_rec=0x145e055052e6 "\200", block=0x145e0f7c4e40, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#122 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc93940, offsets=offsets@entry=0x145e2cc93900, heap=heap@entry=0x145e2cc938f8, tuple=tuple@entry=0x145e055d0880, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#123 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc93940, offsets=offsets@entry=0x145e2cc93900, heap=heap@entry=0x145e2cc938f8, entry=entry@entry=0x145e055d0880, rec=rec@entry=0x145e2cc938f0, big_rec=0x145e2cc938e8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#124 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=22, tuple=0x145e055d0880, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#125 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cc680, split_rec=0x145e055052c6 "\200", block=0x145e0f7c4bf0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#126 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc94910, offsets=offsets@entry=0x145e2cc948d0, heap=heap@entry=0x145e2cc948c8, tuple=tuple@entry=0x145e055cfe80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#127 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc94910, offsets=offsets@entry=0x145e2cc948d0, heap=heap@entry=0x145e2cc948c8, entry=entry@entry=0x145e055cfe80, rec=rec@entry=0x145e2cc948c0, big_rec=0x145e2cc948b8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#128 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=21, tuple=0x145e055cfe80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#129 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cc430, split_rec=0x145e055052a6 "\200", block=0x145e0f7c4500, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#130 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc958e0, offsets=offsets@entry=0x145e2cc958a0, heap=heap@entry=0x145e2cc95898, tuple=tuple@entry=0x145e055cf480, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#131 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc958e0, offsets=offsets@entry=0x145e2cc958a0, heap=heap@entry=0x145e2cc95898, entry=entry@entry=0x145e055cf480, rec=rec@entry=0x145e2cc95890, big_rec=0x145e2cc95888, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#132 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=20, tuple=0x145e055cf480, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#133 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cc1e0, split_rec=0x145e05505286 "\200", block=0x145e0f7c42b0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#134 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc968b0, offsets=offsets@entry=0x145e2cc96870, heap=heap@entry=0x145e2cc96868, tuple=tuple@entry=0x145e055cea80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#135 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc968b0, offsets=offsets@entry=0x145e2cc96870, heap=heap@entry=0x145e2cc96868, entry=entry@entry=0x145e055cea80, rec=rec@entry=0x145e2cc96860, big_rec=0x145e2cc96858, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#136 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=19, tuple=0x145e055cea80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#137 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cbf90, split_rec=0x145e05505266 "\200", block=0x145e0f7c4060, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#138 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc97880, offsets=offsets@entry=0x145e2cc97840, heap=heap@entry=0x145e2cc97838, tuple=tuple@entry=0x145e055ce080, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#139 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc97880, offsets=offsets@entry=0x145e2cc97840, heap=heap@entry=0x145e2cc97838, entry=entry@entry=0x145e055ce080, rec=rec@entry=0x145e2cc97830, big_rec=0x145e2cc97828, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#140 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=18, tuple=0x145e055ce080, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#141 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cbd40, split_rec=0x145e05505246 "\200", block=0x145e0f7c3970, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#142 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc98850, offsets=offsets@entry=0x145e2cc98810, heap=heap@entry=0x145e2cc98808, tuple=tuple@entry=0x145e055cd680, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#143 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc98850, offsets=offsets@entry=0x145e2cc98810, heap=heap@entry=0x145e2cc98808, entry=entry@entry=0x145e055cd680, rec=rec@entry=0x145e2cc98800, big_rec=0x145e2cc987f8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#144 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=17, tuple=0x145e055cd680, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#145 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cbaf0, split_rec=0x145e05505226 "\200", block=0x145e0f7c3720, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#146 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc99820, offsets=offsets@entry=0x145e2cc997e0, heap=heap@entry=0x145e2cc997d8, tuple=tuple@entry=0x145e05450b80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#147 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc99820, offsets=offsets@entry=0x145e2cc997e0, heap=heap@entry=0x145e2cc997d8, entry=entry@entry=0x145e05450b80, rec=rec@entry=0x145e2cc997d0, big_rec=0x145e2cc997c8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#148 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=16, tuple=0x145e05450b80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#149 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7dc980, split_rec=0x145e05505206 "\200", block=0x145e0f7c34d0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#150 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9a7f0, offsets=offsets@entry=0x145e2cc9a7b0, heap=heap@entry=0x145e2cc9a7a8, tuple=tuple@entry=0x145e05450180, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#151 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9a7f0, offsets=offsets@entry=0x145e2cc9a7b0, heap=heap@entry=0x145e2cc9a7a8, entry=entry@entry=0x145e05450180, rec=rec@entry=0x145e2cc9a7a0, big_rec=0x145e2cc9a798, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#152 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=15, tuple=0x145e05450180, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#153 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cb8a0, split_rec=0x145e055051e6 "\200", block=0x145e0f7c3280, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#154 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9b7c0, offsets=offsets@entry=0x145e2cc9b780, heap=heap@entry=0x145e2cc9b778, tuple=tuple@entry=0x145e0544f780, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#155 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9b7c0, offsets=offsets@entry=0x145e2cc9b780, heap=heap@entry=0x145e2cc9b778, entry=entry@entry=0x145e0544f780, rec=rec@entry=0x145e2cc9b770, big_rec=0x145e2cc9b768, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#156 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=14, tuple=0x145e0544f780, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#157 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cb650, split_rec=0x145e055051c6 "\200", block=0x145e0f7c3030, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#158 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9c790, offsets=offsets@entry=0x145e2cc9c750, heap=heap@entry=0x145e2cc9c748, tuple=tuple@entry=0x145e0544ed80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#159 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9c790, offsets=offsets@entry=0x145e2cc9c750, heap=heap@entry=0x145e2cc9c748, entry=entry@entry=0x145e0544ed80, rec=rec@entry=0x145e2cc9c740, big_rec=0x145e2cc9c738, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#160 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=13, tuple=0x145e0544ed80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#161 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cb400, split_rec=0x145e055051a6 "\200", block=0x145e0f7c2de0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#162 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9d760, offsets=offsets@entry=0x145e2cc9d720, heap=heap@entry=0x145e2cc9d718, tuple=tuple@entry=0x145e0544e380, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#163 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9d760, offsets=offsets@entry=0x145e2cc9d720, heap=heap@entry=0x145e2cc9d718, entry=entry@entry=0x145e0544e380, rec=rec@entry=0x145e2cc9d710, big_rec=0x145e2cc9d708, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#164 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=12, tuple=0x145e0544e380, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#165 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7caf60, split_rec=0x145e05505186 "\200", block=0x145e0f7c2b90, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#166 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9e730, offsets=offsets@entry=0x145e2cc9e6f0, heap=heap@entry=0x145e2cc9e6e8, tuple=tuple@entry=0x145e0544d980, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#167 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9e730, offsets=offsets@entry=0x145e2cc9e6f0, heap=heap@entry=0x145e2cc9e6e8, entry=entry@entry=0x145e0544d980, rec=rec@entry=0x145e2cc9e6e0, big_rec=0x145e2cc9e6d8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#168 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=11, tuple=0x145e0544d980, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#169 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7cad10, split_rec=0x145e05505166 "\200", block=0x145e0f7c2250, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#170 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9f700, offsets=offsets@entry=0x145e2cc9f6c0, heap=heap@entry=0x145e2cc9f6b8, tuple=tuple@entry=0x145e0544cf80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#171 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cc9f700, offsets=offsets@entry=0x145e2cc9f6c0, heap=heap@entry=0x145e2cc9f6b8, entry=entry@entry=0x145e0544cf80, rec=rec@entry=0x145e2cc9f6b0, big_rec=0x145e2cc9f6a8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#172 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=10, tuple=0x145e0544cf80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#173 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7ca180, split_rec=0x145e05505146 "\200", block=0x145e0f7c2000, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#174 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca06d0, offsets=offsets@entry=0x145e2cca0690, heap=heap@entry=0x145e2cca0688, tuple=tuple@entry=0x145e0544c580, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#175 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca06d0, offsets=offsets@entry=0x145e2cca0690, heap=heap@entry=0x145e2cca0688, entry=entry@entry=0x145e0544c580, rec=rec@entry=0x145e2cca0680, big_rec=0x145e2cca0678, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#176 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=9, tuple=0x145e0544c580, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#177 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7c9f30, split_rec=0x145e05505126 "\200", block=0x145e0f7c01f0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#178 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca16a0, offsets=offsets@entry=0x145e2cca1660, heap=heap@entry=0x145e2cca1658, tuple=tuple@entry=0x145e0544bb80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#179 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca16a0, offsets=offsets@entry=0x145e2cca1660, heap=heap@entry=0x145e2cca1658, entry=entry@entry=0x145e0544bb80, rec=rec@entry=0x145e2cca1650, big_rec=0x145e2cca1648, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#180 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=8, tuple=0x145e0544bb80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#181 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7c9ce0, split_rec=0x145e05505106 "\200", block=0x145e0f7bffa0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#182 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca2670, offsets=offsets@entry=0x145e2cca2630, heap=heap@entry=0x145e2cca2628, tuple=tuple@entry=0x145e0544b180, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#183 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca2670, offsets=offsets@entry=0x145e2cca2630, heap=heap@entry=0x145e2cca2628, entry=entry@entry=0x145e0544b180, rec=rec@entry=0x145e2cca2620, big_rec=0x145e2cca2618, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#184 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=7, tuple=0x145e0544b180, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#185 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7c9a90, split_rec=0x145e055050e6 "\200", block=0x145e0f7bfd50, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#186 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca3640, offsets=offsets@entry=0x145e2cca3600, heap=heap@entry=0x145e2cca35f8, tuple=tuple@entry=0x145e0544a780, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#187 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca3640, offsets=offsets@entry=0x145e2cca3600, heap=heap@entry=0x145e2cca35f8, entry=entry@entry=0x145e0544a780, rec=rec@entry=0x145e2cca35f0, big_rec=0x145e2cca35e8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#188 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=6, tuple=0x145e0544a780, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#189 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7c9840, split_rec=0x145e055050c6 "\200", block=0x145e0f705880, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#190 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca4610, offsets=offsets@entry=0x145e2cca45d0, heap=heap@entry=0x145e2cca45c8, tuple=tuple@entry=0x145e05449d80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#191 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca4610, offsets=offsets@entry=0x145e2cca45d0, heap=heap@entry=0x145e2cca45c8, entry=entry@entry=0x145e05449d80, rec=rec@entry=0x145e2cca45c0, big_rec=0x145e2cca45b8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#192 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=5, tuple=0x145e05449d80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#193 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7c95f0, split_rec=0x145e055050a6 "\200", block=0x145e0f7c7c80, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#194 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca55e0, offsets=offsets@entry=0x145e2cca55a0, heap=heap@entry=0x145e2cca5598, tuple=tuple@entry=0x145e05449380, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#195 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca55e0, offsets=offsets@entry=0x145e2cca55a0, heap=heap@entry=0x145e2cca5598, entry=entry@entry=0x145e05449380, rec=rec@entry=0x145e2cca5590, big_rec=0x145e2cca5588, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#196 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=4, tuple=0x145e05449380, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#197 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7c93a0, split_rec=0x145e05505086 "\200", block=0x145e0f7c7a30, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#198 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca65b0, offsets=offsets@entry=0x145e2cca6570, heap=heap@entry=0x145e2cca6568, tuple=tuple@entry=0x145e05448980, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#199 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca65b0, offsets=offsets@entry=0x145e2cca6570, heap=heap@entry=0x145e2cca6568, entry=entry@entry=0x145e05448980, rec=rec@entry=0x145e2cca6560, big_rec=0x145e2cca6558, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#200 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=3, tuple=0x145e05448980, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#201 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7c9150, split_rec=0x145e05505046 "\200", block=0x145e0f7c77e0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#202 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca7580, offsets=offsets@entry=0x145e2cca7540, heap=heap@entry=0x145e2cca7538, tuple=tuple@entry=0x145e05447f80, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#203 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca7580, offsets=offsets@entry=0x145e2cca7540, heap=heap@entry=0x145e2cca7538, entry=entry@entry=0x145e05447f80, rec=rec@entry=0x145e2cca7530, big_rec=0x145e2cca7528, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#204 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=7, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=2, tuple=0x145e05447f80, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#205 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7c8f00, split_rec=0x145e05505066 "\200", block=0x145e0f705ad0, index=0x145e054d2980, flags=7) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#206 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca8550, offsets=offsets@entry=0x145e2cca8510, heap=heap@entry=0x145e2cca8508, tuple=tuple@entry=0x145e05447580, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#207 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x145e2cca8550, offsets=offsets@entry=0x145e2cca8510, heap=heap@entry=0x145e2cca8508, entry=entry@entry=0x145e05447580, rec=rec@entry=0x145e2cca8500, big_rec=0x145e2cca84f8, n_ext=<optimized out>, thr=0x0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#208 0x000055cceb5481ed in btr_insert_on_non_leaf_level_func (flags=flags@entry=0, index=index@entry=0x145e054d2980, level=<optimized out>, level@entry=1, tuple=0x145e05447580, file=<optimized out>, file@entry=0x55ccebc884a8 "/test/10.4_dbg/storage/innobase/btr/btr0btr.cc", line=<optimized out>, line@entry=2607, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2482
|
#209 0x000055cceb54ec51 in btr_attach_half_pages (mtr=0x145e2cca9b80, direction=111, new_block=0x145e0f7c8cb0, split_rec=0x145e054bd066 "\200", block=0x145e0f705d20, index=0x145e054d2980, flags=0) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2606
|
#210 btr_page_split_and_insert (flags=flags@entry=0, cursor=cursor@entry=0x145e2cca9600, offsets=offsets@entry=0x145e2cca9518, heap=heap@entry=0x145e2cca9508, tuple=tuple@entry=0x145e054ca430, n_ext=0, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0btr.cc:2998
|
#211 0x000055cceb5692b0 in btr_cur_pessimistic_insert (flags=flags@entry=0, cursor=cursor@entry=0x145e2cca9600, offsets=offsets@entry=0x145e2cca9518, heap=heap@entry=0x145e2cca9508, entry=entry@entry=0x145e054ca430, rec=rec@entry=0x145e2cca95b0, big_rec=0x145e2cca96a0, n_ext=<optimized out>, thr=0x145e0552d810, mtr=0x145e2cca9b80) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:3802
|
#212 0x000055cceb43088b in row_ins_sec_index_entry_low (flags=flags@entry=0, mode=mode@entry=33, index=index@entry=0x145e054d2980, offsets_heap=<optimized out>, offsets_heap@entry=0x145e05446b00, heap=heap@entry=0x145e05447000, entry=entry@entry=0x145e054ca430, trx_id=0, thr=0x145e0552d810) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:3096
|
#213 0x000055cceb435b61 in row_ins_sec_index_entry (index=index@entry=0x145e054d2980, entry=entry@entry=0x145e054ca430, thr=thr@entry=0x145e0552d810, check_foreign=check_foreign@entry=true) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:3289
|
#214 0x000055cceb437258 in row_ins_index_entry (thr=0x145e0552d810, entry=0x145e054ca430, index=0x145e054d2980) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:3322
|
#215 row_ins_index_entry_step (thr=0x145e0552d810, node=0x145e0552d5b8) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:3489
|
#216 row_ins (thr=0x145e0552d810, node=0x145e0552d5b8) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:3626
|
#217 row_ins_step (thr=thr@entry=0x145e0552d810) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:3765
|
#218 0x000055cceb457c77 in row_insert_for_mysql (mysql_rec=mysql_rec@entry=0x145e05441190 "\376", prebuilt=0x145e0552d080, ins_mode=ROW_INS_NORMAL) at /test/10.4_dbg/storage/innobase/row/row0mysql.cc:1422
|
#219 0x000055cceb2dbc84 in ha_innobase::write_row (this=0x145e0547a088, record=0x145e05441190 "\376") at /test/10.4_dbg/storage/innobase/handler/ha_innodb.cc:7982
|
#220 0x000055cceb0b31f6 in handler::ha_write_row (this=0x145e0547a088, buf=0x145e05441190 "\376") at /test/10.4_dbg/sql/handler.cc:6742
|
#221 0x000055cceadaec74 in write_record (thd=0x145e05415070, table=0x145e0552c070, info=info@entry=0x145e0546eda0) at /test/10.4_dbg/sql/sql_insert.cc:2060
|
#222 0x000055cceadaf12c in select_insert::send_data (this=0x145e0546ed58, values=<optimized out>) at /test/10.4_dbg/sql/sql_insert.cc:3971
|
#223 0x000055cceae4fbec in end_send (join=0x145e0546ee08, join_tab=0x145e054709e8, end_of_records=<optimized out>) at /test/10.4_dbg/sql/sql_select.cc:21589
|
#224 0x000055cceae2a660 in evaluate_join_record (join=join@entry=0x145e0546ee08, join_tab=0x145e05470640, error=error@entry=0) at /test/10.4_dbg/sql/sql_select.cc:20620
|
#225 0x000055cceae5b6de in AGGR_OP::end_send (this=this@entry=0x145e05470f38) at /test/10.4_dbg/sql/sql_select.cc:28738
|
#226 0x000055cceae5ba2e in sub_select_postjoin_aggr (join=0x145e0546ee08, join_tab=0x145e05470640, end_of_records=<optimized out>) at /test/10.4_dbg/sql/sql_select.cc:20114
|
#227 0x000055cceae38dd6 in sub_select (join=0x145e0546ee08, join_tab=0x145e05470298, end_of_records=<optimized out>) at /test/10.4_dbg/sql/sql_select.cc:20349
|
#228 0x000055cceae6aceb in do_select (procedure=<optimized out>, join=0x145e0546ee08) at /test/10.4_dbg/sql/sql_select.cc:19940
|
#229 JOIN::exec_inner (this=this@entry=0x145e0546ee08) at /test/10.4_dbg/sql/sql_select.cc:4473
|
#230 0x000055cceae6b04d in JOIN::exec (this=this@entry=0x145e0546ee08) at /test/10.4_dbg/sql/sql_select.cc:4255
|
#231 0x000055cceae693f3 in mysql_select (thd=thd@entry=0x145e05415070, tables=<optimized out>, wild_num=1, fields=@0x145e0546d980: {<base_list> = {<Sql_alloc> = {<No data fields>}, first = 0x145e0546ddb0, last = 0x145e0546f5c8, elements = 2}, <No data fields>}, conds=0x0, og_num=<optimized out>, order=0x0, group=0x0, having=0x0, proc_param=0x0, select_options=3489925888, result=0x145e0546ed58, unit=0x145e05418f98, select_lex=0x145e0546d838) at /test/10.4_dbg/sql/sql_select.cc:4687
|
#232 0x000055cceae6971e in handle_select (thd=thd@entry=0x145e05415070, lex=lex@entry=0x145e05418ed8, result=result@entry=0x145e0546ed58, setup_tables_done_option=setup_tables_done_option@entry=1073741824) at /test/10.4_dbg/sql/sql_select.cc:410
|
#233 0x000055cceadf106e in mysql_execute_command (thd=thd@entry=0x145e05415070) at /test/10.4_dbg/sql/sql_parse.cc:4633
|
#234 0x000055cceadf8090 in mysql_parse (thd=thd@entry=0x145e05415070, rawbuf=<optimized out>, length=<optimized out>, parser_state=parser_state@entry=0x145e2ccad460, is_com_multi=is_com_multi@entry=false, is_next_command=is_next_command@entry=false) at /test/10.4_dbg/sql/sql_parse.cc:7896
|
#235 0x000055cceadfa920 in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x145e05415070, packet=packet@entry=0x145e05457071 "INSERT INTO t SELECT * FROM t", packet_length=packet_length@entry=29, is_com_multi=is_com_multi@entry=false, is_next_command=is_next_command@entry=false) at /test/10.4_dbg/sql/sql_parse.cc:1834
|
#236 0x000055cceadfe35b in do_command (thd=0x145e05415070) at /test/10.4_dbg/sql/sql_parse.cc:1352
|
#237 0x000055cceaf2a8b6 in do_handle_one_connection (connect=connect@entry=0x145e29835790) at /test/10.4_dbg/sql/sql_connect.cc:1412
|
#238 0x000055cceaf2a9d6 in handle_one_connection (arg=0x145e29835790) at /test/10.4_dbg/sql/sql_connect.cc:1316
|
#239 0x0000145e2beac6db in start_thread (arg=0x145e2ccae700) at pthread_create.c:463
|
#240 0x0000145e2b026a3f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95
|
Bug confirmed present in:
MariaDB: 10.1.47 (dbg), 10.2.34 (dbg), 10.3.25 (dbg), 10.4.15 (dbg), 10.5.6 (dbg)
MySQL: 5.6.47 (dbg), 5.7.29 (dbg), 8.0.19 (dbg)
Bug confirmed not present in:
MariaDB: 10.1.47 (opt), 10.2.34 (opt), 10.3.25 (opt), 10.4.15 (opt), 10.5.6 (opt)
MySQL: 5.5.62 (dbg), 5.5.62 (opt), 5.6.47 (opt), 5.7.29 (opt), 8.0.19 (opt)
|
|
Debugging another assert:
block->page.flush_observer == __null || block->page.flush_observer == observer
|
Led me back to this ticket.
In this case, set global innodb_simulate_comp_failures=99; is used.
The attached testcase, when executed from the CLI, will produce the level<=50 assert.
However, when replaying the same via the C-API (i.e. pquery) the completely different block->page.flush_observer assert is observed. It may be sporadic, though does seem to reproduce stably for the moment.
|
10.4.15 eae968f62d285de97ed607c87bc131cd863d5d03 (Debug)
|
Core was generated by `/test/MD110820-mariadb-10.4.15-linux-x86_64-dbg/bin/mysqld --no-defaults --base'.
|
Program terminated with signal SIGABRT, Aborted.
|
#0 __pthread_kill (threadid=<optimized out>, signo=signo@entry=6)
|
at ../sysdeps/unix/sysv/linux/pthread_kill.c:57
|
[Current thread is 1 (Thread 0x1524ce77c700 (LWP 1286913))]
|
(gdb) bt
|
#0 __pthread_kill (threadid=<optimized out>, signo=signo@entry=6)
|
at ../sysdeps/unix/sysv/linux/pthread_kill.c:57
|
#1 0x0000557ac9cdb8a6 in my_write_core (sig=sig@entry=6)
|
at /test/10.4_dbg/mysys/stacktrace.c:482
|
#2 0x0000557ac9457cdc in handle_fatal_signal (sig=6) at /test/10.4_dbg/sql/signal_handler.cc:343
|
#3 <signal handler called>
|
#4 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51
|
#5 0x00001524cca138b1 in __GI_abort () at abort.c:79
|
#6 0x00001524cca0342a in __assert_fail_base (
|
fmt=0x1524ccb8aa38 "%s%s%s:%u: %s%sAssertion `%s' failed.\n%n",
|
assertion=assertion@entry=0x557ac9fbecc1 "level <= 50",
|
file=file@entry=0x557ac9fb0478 "/test/10.4_dbg/storage/innobase/include/btr0btr.ic",
|
line=line@entry=125,
|
function=function@entry=0x557aca0469e0 <_ZZL18btr_page_set_levelPhP14page_zip_des_tmP5mtr_tE19__PRETTY_FUNCTION__> "void btr_page_set_level(ib_page_t*, page_zip_des_t*, ulint, mtr_t*)")
|
at assert.c:92
|
#7 0x00001524cca034a2 in __GI___assert_fail (
|
assertion=assertion@entry=0x557ac9fbecc1 "level <= 50",
|
file=file@entry=0x557ac9fb0478 "/test/10.4_dbg/storage/innobase/include/btr0btr.ic",
|
line=line@entry=125,
|
function=function@entry=0x557aca0469e0 <_ZZL18btr_page_set_levelPhP14page_zip_des_tmP5mtr_tE19__PRETTY_FUNCTION__> "void btr_page_set_level(ib_page_t*, page_zip_des_t*, ulint, mtr_t*)")
|
at assert.c:101
|
#8 0x0000557ac9910b32 in btr_page_set_level (mtr=0x1524ce774770, level=70,
|
page_zip=0x1524b102e1d0, page=0x1524b1974000 "")
|
at /test/10.4_dbg/storage/innobase/include/btr0btr.ic:125
|
#9 PageBulk::init (this=this@entry=0x1524ce774760)
|
at /test/10.4_dbg/storage/innobase/btr/btr0bulk.cc:135
|
#10 0x0000557ac9912943 in BtrBulk::finish (this=this@entry=0x1524a6c142c0, err=<optimized out>)
|
at /test/10.4_dbg/storage/innobase/btr/btr0bulk.cc:1067
|
#11 0x0000557ac9803690 in row_merge_read_clustered_index (allow_not_null=<optimized out>,
|
eval_table=<optimized out>, crypt_block=<optimized out>, pct_cost=<optimized out>,
|
stage=<optimized out>, tmpfd=0x1524ce774f80, skip_pk_sort=<optimized out>,
|
block=<optimized out>, sequence=..., add_autoinc=<optimized out>, col_map=<optimized out>,
|
add_v=<optimized out>, defaults=<optimized out>, n_index=<optimized out>,
|
key_numbers=<optimized out>, files=<optimized out>, psort_info=<optimized out>,
|
fts_sort_idx=<optimized out>, index=<optimized out>, online=<optimized out>,
|
new_table=<optimized out>, old_table=<optimized out>, table=<optimized out>,
|
trx=<optimized out>) at /test/10.4_dbg/storage/innobase/row/row0merge.cc:2528
|
#12 row_merge_build_indexes (trx=<optimized out>, old_table=<optimized out>,
|
new_table=<optimized out>, online=<optimized out>, indexes=<optimized out>,
|
key_numbers=<optimized out>, n_indexes=<optimized out>, table=<optimized out>,
|
defaults=<optimized out>, col_map=<optimized out>, add_autoinc=<optimized out>,
|
sequence=..., skip_pk_sort=<optimized out>, stage=<optimized out>, add_v=<optimized out>,
|
eval_table=<optimized out>, allow_not_null=<optimized out>)
|
at /test/10.4_dbg/storage/innobase/row/row0merge.cc:4708
|
#13 0x0000557ac96c22cb in ha_innobase::inplace_alter_table (this=0x1524a6c7a088,
|
altered_table=0x1524ce7762e0, ha_alter_info=0x1524ce776240)
|
at /test/10.4_dbg/storage/innobase/handler/handler0alter.cc:8484
|
#14 0x0000557ac92606dc in handler::ha_inplace_alter_table (ha_alter_info=0x1524ce776240,
|
altered_table=0x1524ce7762e0, this=<optimized out>) at /test/10.4_dbg/sql/handler.h:4369
|
#15 mysql_inplace_alter_table (thd=thd@entry=0x1524a6c15070, table_list=0x1524a6c6d210,
|
table=table@entry=0x1524a6cfd070, altered_table=altered_table@entry=0x1524ce7762e0,
|
ha_alter_info=ha_alter_info@entry=0x1524ce776240,
|
target_mdl_request=target_mdl_request@entry=0x1524ce777230, alter_ctx=0x1524ce777d70)
|
at /test/10.4_dbg/sql/sql_table.cc:7746
|
#16 0x0000557ac926dc9f in mysql_alter_table (thd=thd@entry=0x1524a6c15070,
|
new_db=new_db@entry=0x1524a6c19830, new_name=new_name@entry=0x1524a6c19c38,
|
create_info=create_info@entry=0x1524ce778950, table_list=<optimized out>,
|
table_list@entry=0x1524a6c6d210, alter_info=alter_info@entry=0x1524ce778890, order_num=0,
|
order=0x0, ignore=false) at /test/10.4_dbg/sql/sql_table.cc:10156
|
#17 0x0000557ac92e83df in Sql_cmd_alter_table::execute (this=0x1524a6c6d8e0, thd=0x1524a6c15070)
|
at /test/10.4_dbg/sql/sql_alter.cc:514
|
#18 0x0000557ac91aca3d in mysql_execute_command (thd=thd@entry=0x1524a6c15070)
|
at /test/10.4_dbg/sql/sql_parse.cc:6098
|
#19 0x0000557ac91af090 in mysql_parse (thd=thd@entry=0x1524a6c15070, rawbuf=<optimized out>,
|
length=<optimized out>, parser_state=parser_state@entry=0x1524ce77b460,
|
is_com_multi=is_com_multi@entry=false, is_next_command=is_next_command@entry=false)
|
at /test/10.4_dbg/sql/sql_parse.cc:7896
|
#20 0x0000557ac91b1920 in dispatch_command (command=command@entry=COM_QUERY,
|
thd=thd@entry=0x1524a6c15070,
|
packet=packet@entry=0x1524a6c57071 "ALTER TABLE t1 ROW_FORMAT=DEFAULT KEY_BLOCK_SIZE=2;#ERROR: 2013 - Lost connection to MySQL server during query;", packet_length=packet_length@entry=111,
|
is_com_multi=is_com_multi@entry=false, is_next_command=is_next_command@entry=false)
|
at /test/10.4_dbg/sql/sql_parse.cc:1834
|
#21 0x0000557ac91b535b in do_command (thd=0x1524a6c15070) at /test/10.4_dbg/sql/sql_parse.cc:1352
|
#22 0x0000557ac92e18b6 in do_handle_one_connection (connect=connect@entry=0x1524cb435790)
|
at /test/10.4_dbg/sql/sql_connect.cc:1412
|
#23 0x0000557ac92e19d6 in handle_one_connection (arg=0x1524cb435790)
|
at /test/10.4_dbg/sql/sql_connect.cc:1316
|
#24 0x00001524cd97a6db in start_thread (arg=0x1524ce77c700) at pthread_create.c:463
|
#25 0x00001524ccaf4a3f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95
|
To replay, the attached tarball (1597302259_bug_bundle.tar.gz) gives the testcase as an exact match of our system, including some handy utilities
$ vi 1597302259_mybase # STEP1: Update the base path in this file (usually the only change required!). If you use a non-binary distribution, please update SOURCE_DIR location also
|
$ ./1597302259_init # STEP2: Initializes the data dir
|
$ ./1597302259_start # STEP3: Starts mysqld
|
$ ./1597302259_cl # STEP4: To check mysqld is up (repeat if necessary)
|
$ ./1597302259_run_pquery # STEP5: Run the testcase with the pquery binary
|
$ ./1597302259_run # OPTIONAL: Run the testcase with the mysql CLI (may not reproduce the issue, ref above)
|
$ vi /dev/shm/1597302259/log/master.err # STEP6: Verify the error log
|
$ ./1597302259_gdb # OPTIONAL: Brings you to a gdb prompt with gdb attached to the used mysqld and attached to the generated core
|
$ ./1597302259_parse_core # OPTIONAL: Creates 1597302259_STD.gdb and 1597302259_FULL.gdb; standard and full variables gdb stack traces
|
The SQL is not fully clean, but I left it as-was to ensure reproducibility later. It is only 11 lines.
I would propose not trying to get the testcase up and running; I can instead verify the existing of this extra assert once the level<=50 assert is deemed fixed.
Given the short testcase and the result at the CLI being repetitively the level<=50 assert it may the same issue, though I doubt as the setup, outcome, and testcase specifics all differ. What would be appreciated though is if you could check the stack in this comment + the core file to see if this issue is likely the same bug, or something completely different. If so, let me know and I will create a new bug.
Setting this back to major for the time being given the new assert, please lower if less important or if it's the same issue.
I will upload a core + mysqld + ldd files + error log + data dir for debugging.
|
|
Unique ID's seen so far
level <= 50|SIGABRT|btr_page_get_level|btr_cur_search_to_nth_level_func|btr_insert_on_non_leaf_level_func|btr_attach_half_pages
|
level <= 50|SIGABRT|btr_page_set_level|btr_page_empty|btr_root_raise_and_insert|btr_cur_pessimistic_insert
|
level < 50|SIGABRT|btr_page_alloc|btr_root_raise_and_insert|btr_cur_pessimistic_insert|btr_insert_on_non_leaf_level
|
level <= 50|SIGABRT|ut_dbg_assertion_failed|btr_page_set_level|btr_page_empty|btr_root_raise_and_insert
|
block->page.flush_observer == __null || block->page.flush_observer == observer|SIGABRT|buf_flush_note_modification|ReleaseBlocks::add_dirty_page_to_flush_list|ReleaseBlocks::operatormtr0mtr.cc|CIterate<ReleaseBlocks
|
size == space->size|SIGABRT|buf_read_ahead_random|buf_page_get_low|buf_page_get_gen|btr_cur_search_to_nth_level_func
|
SIGABRT|my_server_abort|my_abort|ut_dbg_assertion_failed|btr_page_set_level
|
|
|
Yet another sibling of the testcase (in the 1597302259_bug_bundle.tar.gz file) above yields the MDEV-22653 SIGABRT|ut_dbg_assertion_failed|btr_cur_latch_leaves|btr_cur_search_to_nth_level_func|btr_page_get_father_node_ptr_func assert. So it looks like this issue is related to MDEV-22653 after all. The testcase in this case, replayed via C-API (pquery) was this reduced version:
USE test;
|
CREATE TABLE t (a INT PRIMARY KEY);
|
SET GLOBAL innodb_simulate_comp_failures=99;
|
INSERT INTO t VALUES(1);
|
INSERT INTO t VALUES(0);
|
ALTER TABLE t ROW_FORMAT=DEFAULT KEY_BLOCK_SIZE=2;
|
Verified that this testcase can also produce level <= 50 assert using the exact same test setup
./1597302259_init;./1597302259_start;sleep 2;./1597302259_run_pquery ; sleep 2; ./1597302259_gdb
|
So the issue is now established sporadic as to the outcome, though a crash is observed each execution.
|
|
After about 7-8 attempts using a cleaned up version of the previously uploaded testcase (and more or less the same procedure from the last comment) the testcase produced the block->page.flush_observer == __null || block->page.flush_observer == observer assert. It is clearly sporadic as to it's outcome. All other outcomes where the level<=50 assert. The cleaned up testcase:
USE test;
|
CREATE TABLE t1 (a int not null primary key) ;
|
SET @commands= 'abcdefghijklmnopqrstuvwxyz';
|
set global innodb_simulate_comp_failures=99;
|
INSERT INTO t1 VALUES(1);
|
SET @@GLOBAL.OPTIMIZER_SWITCH="mrr=OFF";
|
INSERT INTO t1 VALUES ('abcdefghijklmnopqrstuvwxyz');
|
INSERT INTO t1 VALUES(0xA6E0);
|
ALTER TABLE t1 ROW_FORMAT=DEFAULT KEY_BLOCK_SIZE=2;
|
CREATE DEFINER=CURRENT_USER FUNCTION f3 (i1 DATETIME(2)) RETURNS DECIMAL(1) UNSIGNED SQL SECURITY INVOKER RETURN CONCAT('abcdefghijklmnopqrstuvwxyz',i1);
|
We'll wait for the input from jplindst in MDEV-22653 to potentially eliminate innodb_simulate_comp_failures, though it may be interesting to check what happened here in terms of the new assert seen (ref core etc.). And the levels fix as described by Marko above can be made in this ticket.
|
|
Another somewhat similar testcase leading to another different stack.
SET SQL_MODE='';
|
USE test;
|
CREATE TABLE tab(c INT) ROW_FORMAT=COMPRESSED;
|
SET GLOBAL INNODB_LIMIT_OPTIMISTIC_INSERT_DEBUG=2;
|
CREATE TABLE t (c INT);
|
INSERT INTO t VALUES (1),(2),(3),(4);
|
INSERT INTO t SELECT t.* FROM t,t t2,t t3,t t4,t t5,t t6,t t7;
|
SET GLOBAL INNODB_RANDOM_READ_AHEAD=1;
|
INSERT INTO tab(c) VALUES(1);
|
Leads to:
|
10.4.15 eae968f62d285de97ed607c87bc131cd863d5d03 (Debug)
|
mysqld: /test/10.4_dbg/storage/innobase/buf/buf0rea.cc:282: ulint buf_read_ahead_random(page_id_t, ulint, bool): Assertion `size == space->size' failed.
|
|
10.4.15 eae968f62d285de97ed607c87bc131cd863d5d03 (Debug)
|
Core was generated by `/test/MD110820-mariadb-10.4.15-linux-x86_64-dbg/bin/mysqld --no-defaults --core'.
|
Program terminated with signal SIGABRT, Aborted.
|
#0 __pthread_kill (threadid=<optimized out>, signo=signo@entry=6)
|
at ../sysdeps/unix/sysv/linux/pthread_kill.c:57
|
[Current thread is 1 (Thread 0x14c3c4885700 (LWP 1486076))]
|
(gdb) bt
|
#0 __pthread_kill (threadid=<optimized out>, signo=signo@entry=6) at ../sysdeps/unix/sysv/linux/pthread_kill.c:57
|
#1 0x000055d2d01458a6 in my_write_core (sig=sig@entry=6) at /test/10.4_dbg/mysys/stacktrace.c:482
|
#2 0x000055d2cf8c1cdc in handle_fatal_signal (sig=6) at /test/10.4_dbg/sql/signal_handler.cc:343
|
#3 <signal handler called>
|
#4 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51
|
#5 0x000014c3c2b1c8b1 in __GI_abort () at abort.c:79
|
#6 0x000014c3c2b0c42a in __assert_fail_base (fmt=0x14c3c2c93a38 "%s%s%s:%u: %s%sAssertion `%s' failed.\n%n", assertion=assertion@entry=0x55d2d04c4a86 "size == space->size", file=file@entry=0x55d2d04caf78 "/test/10.4_dbg/storage/innobase/buf/buf0rea.cc", line=line@entry=282, function=function@entry=0x55d2d04cbd40 <buf_read_ahead_random(page_id_t, unsigned long, bool)::__PRETTY_FUNCTION__> "ulint buf_read_ahead_random(page_id_t, ulint, bool)") at assert.c:92
|
#7 0x000014c3c2b0c4a2 in __GI___assert_fail (assertion=assertion@entry=0x55d2d04c4a86 "size == space->size", file=file@entry=0x55d2d04caf78 "/test/10.4_dbg/storage/innobase/buf/buf0rea.cc", line=line@entry=282, function=function@entry=0x55d2d04cbd40 <buf_read_ahead_random(page_id_t, unsigned long, bool)::__PRETTY_FUNCTION__> "ulint buf_read_ahead_random(page_id_t, ulint, bool)") at assert.c:101
|
#8 0x000055d2cfe0fa59 in buf_read_ahead_random (page_id={m_space = 5, m_page_no = 3}, zip_size=zip_size@entry=8192, ibuf=<optimized out>) at /test/10.4_dbg/storage/innobase/buf/buf0rea.cc:282
|
#9 0x000055d2cfdd8525 in buf_page_get_low (page_id={m_space = 5, m_page_no = 3}, zip_size=zip_size@entry=8192, rw_latch=rw_latch@entry=1, guess=<optimized out>, guess@entry=0x0, mode=mode@entry=10, file=file@entry=0x55d2d046bfa0 "/test/10.4_dbg/storage/innobase/row/row0ins.cc", line=<optimized out>, mtr=<optimized out>, err=<optimized out>) at /test/10.4_dbg/storage/innobase/buf/buf0buf.cc:4419
|
#10 0x000055d2cfdda112 in buf_page_get_gen (page_id={m_space = 2, m_page_no = 0}, zip_size=zip_size@entry=8192, rw_latch=rw_latch@entry=1, guess=guess@entry=0x0, mode=mode@entry=10, file=file@entry=0x55d2d046bfa0 "/test/10.4_dbg/storage/innobase/row/row0ins.cc", line=2613, mtr=0x14c3c4880de0, err=0x14c3c487f85c) at /test/10.4_dbg/storage/innobase/buf/buf0buf.cc:4942
|
#11 0x000055d2cfd923b8 in btr_cur_search_to_nth_level_func (index=index@entry=0x14c39ccd6680, level=<optimized out>, tuple=tuple@entry=0x14c39ccad600, mode=mode@entry=PAGE_CUR_LE, latch_mode=<optimized out>, latch_mode@entry=2, cursor=cursor@entry=0x14c3c4880720, ahi_latch=<optimized out>, file=<optimized out>, line=<optimized out>, mtr=<optimized out>, autoinc=<optimized out>) at /test/10.4_dbg/storage/innobase/btr/btr0cur.cc:1629
|
#12 0x000055d2cfc4d40f in btr_pcur_open_low (index=index@entry=0x14c39ccd6680, level=<optimized out>, level@entry=0, tuple=tuple@entry=0x14c39ccad600, mode=mode@entry=PAGE_CUR_LE, latch_mode=latch_mode@entry=2, cursor=cursor@entry=0x14c3c4880720, file=<optimized out>, line=<optimized out>, autoinc=0, mtr=0x14c3c4880de0) at /test/10.4_dbg/storage/innobase/include/btr0pcur.ic:441
|
#13 0x000055d2cfc4dfa5 in row_ins_clust_index_entry_low (flags=flags@entry=0, mode=mode@entry=2, index=index@entry=0x14c39ccd6680, n_uniq=n_uniq@entry=0, entry=entry@entry=0x14c39ccad600, n_ext=n_ext@entry=0, thr=0x14c39ccd37a8) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:2612
|
#14 0x000055d2cfc5660b in row_ins_clust_index_entry (index=index@entry=0x14c39ccd6680, entry=entry@entry=0x14c39ccad600, thr=thr@entry=0x14c39ccd37a8, n_ext=n_ext@entry=0) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:3195
|
#15 0x000055d2cfc5827f in row_ins_index_entry (thr=0x14c39ccd37a8, entry=0x14c39ccad600, index=0x14c39ccd6680) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:3320
|
#16 row_ins_index_entry_step (thr=0x14c39ccd37a8, node=0x14c39ccd3580) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:3489
|
#17 row_ins (thr=0x14c39ccd37a8, node=0x14c39ccd3580) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:3626
|
#18 row_ins_step (thr=thr@entry=0x14c39ccd37a8) at /test/10.4_dbg/storage/innobase/row/row0ins.cc:3765
|
#19 0x000055d2cfc78c77 in row_insert_for_mysql (mysql_rec=mysql_rec@entry=0x14c39cc48490 "\375\001", prebuilt=0x14c39ccd3080, ins_mode=ROW_INS_NORMAL) at /test/10.4_dbg/storage/innobase/row/row0mysql.cc:1422
|
#20 0x000055d2cfafcc84 in ha_innobase::write_row (this=0x14c39cc81888, record=0x14c39cc48490 "\375\001") at /test/10.4_dbg/storage/innobase/handler/ha_innodb.cc:7982
|
#21 0x000055d2cf8d41f6 in handler::ha_write_row (this=0x14c39cc81888, buf=0x14c39cc48490 "\375\001") at /test/10.4_dbg/sql/handler.cc:6742
|
#22 0x000055d2cf5cfc74 in write_record (thd=thd@entry=0x14c39cc15070, table=table@entry=0x14c39cd2a070, info=info@entry=0x14c3c4881fe0) at /test/10.4_dbg/sql/sql_insert.cc:2060
|
#23 0x000055d2cf5da3ba in mysql_insert (thd=thd@entry=0x14c39cc15070, table_list=0x14c39cc6d170, fields=@0x14c39cc19e48: {<base_list> = {<Sql_alloc> = {<No data fields>}, first = 0x14c39cc6d950, last = 0x14c39cc6d950, elements = 1}, <No data fields>}, values_list=@0x14c39cc19e90: {<base_list> = {<Sql_alloc> = {<No data fields>}, first = 0x14c39cc6de88, last = 0x14c39cc6de88, elements = 1}, <No data fields>}, update_fields=@0x14c39cc19e78: {<base_list> = {<Sql_alloc> = {<No data fields>}, first = 0x55d2d0d8e000 <end_of_list>, last = 0x14c39cc19e78, elements = 0}, <No data fields>}, update_values=@0x14c39cc19e60: {<base_list> = {<Sql_alloc> = {<No data fields>}, first = 0x55d2d0d8e000 <end_of_list>, last = 0x14c39cc19e60, elements = 0}, <No data fields>}, duplic=<optimized out>, ignore=<optimized out>) at /test/10.4_dbg/sql/sql_insert.cc:1078
|
#24 0x000055d2cf611a63 in mysql_execute_command (thd=thd@entry=0x14c39cc15070) at /test/10.4_dbg/sql/sql_parse.cc:4519
|
#25 0x000055d2cf619090 in mysql_parse (thd=thd@entry=0x14c39cc15070, rawbuf=<optimized out>, length=<optimized out>, parser_state=parser_state@entry=0x14c3c4884460, is_com_multi=is_com_multi@entry=false, is_next_command=is_next_command@entry=false) at /test/10.4_dbg/sql/sql_parse.cc:7896
|
#26 0x000055d2cf61b920 in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x14c39cc15070, packet=packet@entry=0x14c39cc57071 "INSERT INTO tab(c) VALUES(1)", packet_length=packet_length@entry=28, is_com_multi=is_com_multi@entry=false, is_next_command=is_next_command@entry=false) at /test/10.4_dbg/sql/sql_parse.cc:1834
|
#27 0x000055d2cf61f35b in do_command (thd=0x14c39cc15070) at /test/10.4_dbg/sql/sql_parse.cc:1352
|
#28 0x000055d2cf74b8b6 in do_handle_one_connection (connect=connect@entry=0x14c3c1435790) at /test/10.4_dbg/sql/sql_connect.cc:1412
|
#29 0x000055d2cf74b9d6 in handle_one_connection (arg=0x14c3c1435790) at /test/10.4_dbg/sql/sql_connect.cc:1316
|
#30 0x000014c3c3a836db in start_thread (arg=0x14c3c4885700) at pthread_create.c:463
|
#31 0x000014c3c2bfda3f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95
|
Bug confirmed present in:
MariaDB: 10.2.34 (dbg), 10.3.25 (dbg), 10.4.15 (dbg)
Bug confirmed not present in:
MariaDB: 10.1.47 (dbg), 10.1.47 (opt), 10.2.34 (opt), 10.3.25 (opt), 10.4.15 (opt), 10.5.6 (dbg), 10.5.6 (opt)
MySQL: 5.5.62 (dbg), 5.5.62 (opt), 5.6.47 (dbg), 5.6.47 (opt), 5.7.29 (dbg), 5.7.29 (opt), 8.0.19 (dbg), 8.0.19 (opt)
|
|
CREATE TABLE t1 (ID INT(11) NOT NULL AUTO_INCREMENT, Name CHAR(35) NOT NULL DEFAULT '', country CHAR(3) NOT NULL DEFAULT '', Population INT(11) NOT NULL DEFAULT '0', PRIMARY KEY(ID), INDEX (Population), INDEX (country));
|
SET GLOBAL innodb_limit_optimistic_insert_debug = 2;
|
INSERT INTO t1 VALUES (201,'Sarajevo','BIH',360000), (202,'Banja Luka','BIH',143079), (203,'Zenica','BIH',96027), (204,'Gaborone','BWA',213017), (205,'Francistown','BWA',101805), (206,'São Paulo','BRA',9968485), (207,'Rio de Janeiro','BRA',5598953), (208,'Salvador','BRA',2302832), (209,'Belo Horizonte','BRA',2139125), (210,'Fortaleza','BRA',2097757), (211,'Brasília','BRA',1969868), (212,'Curitiba','BRA',1584232), (213,'Recife','BRA',1378087), (214,'Porto Alegre','BRA',1314032), (215,'Manaus','BRA',1255049), (216,'Belém','BRA',1186926), (217,'Guarulhos','BRA',1095874), (218,'Goiânia','BRA',1056330), (219,'Campinas','BRA',950043), (220,'São Gonçalo','BRA',869254), (221,'Nova Iguaçu','BRA',862225), (222,'São Luís','BRA',837588), (223,'Maceió','BRA',786288), (224,'Duque de Caxias','BRA',746758), (225,'São Bernardo do Campo','BRA',723132), (226,'Teresina','BRA',691942), (227,'Natal','BRA',688955), (228,'Osasco','BRA',659604), (229,'Campo Grande','BRA',649593), (230,'Santo André','BRA',630073), (231,'João Pessoa','BRA',584029), (232,'Jaboatão dos Guararapes','BRA',558680), (233,'Contagem','BRA',520801), (234,'São José dos Campos','BRA',515553), (235,'Uberlândia','BRA',487222), (236,'Feira de Santana','BRA',479992), (237,'Ribeirão Preto','BRA',473276), (238,'Sorocaba','BRA',466823), (239,'Niterói','BRA',459884), (240,'Cuiabá','BRA',453813), (241,'Juiz de Fora','BRA',450288), (242,'Aracaju','BRA',445555), (243,'São João de Meriti','BRA',440052), (244,'Londrina','BRA',432257), (245,'Joinville','BRA',428011), (246,'Belford Roxo','BRA',425194), (247,'Santos','BRA',408748), (248,'Ananindeua','BRA',400940), (249,'Campos dos Goytacazes','BRA',398418), (250,'Mauá','BRA',375055), (251,'Carapicuíba','BRA',357552), (252,'Olinda','BRA',354732), (253,'Campina Grande','BRA',352497), (254,'São José do Rio Preto','BRA',351944), (255,'Caxias do Sul','BRA',349581), (256,'Moji das Cruzes','BRA',339194), (257,'Diadema','BRA',335078), (258,'Aparecida de Goiânia','BRA',324662), (259,'Piracicaba','BRA',319104), (260,'Cariacica','BRA',319033), (261,'Vila Velha','BRA',318758), (262,'Pelotas','BRA',315415), (263,'Bauru','BRA',313670), (264,'Porto Velho','BRA',309750), (265,'Serra','BRA',302666), (266,'Betim','BRA',302108), (267,'Jundíaí','BRA',296127), (268,'Canoas','BRA',294125), (269,'Franca','BRA',290139), (270,'São Vicente','BRA',286848), (271,'Maringá','BRA',286461), (272,'Montes Claros','BRA',286058), (273,'Anápolis','BRA',282197), (274,'Florianópolis','BRA',281928), (275,'Petrópolis','BRA',279183), (276,'Itaquaquecetuba','BRA',270874), (277,'Vitória','BRA',270626), (278,'Ponta Grossa','BRA',268013), (279,'Rio Branco','BRA',259537), (280,'Foz do Iguaçu','BRA',259425), (281,'Macapá','BRA',256033), (282,'Ilhéus','BRA',254970), (283,'Vitória da Conquista','BRA',253587), (284,'Uberaba','BRA',249225), (285,'Paulista','BRA',248473), (286,'Limeira','BRA',245497), (287,'Blumenau','BRA',244379), (288,'Caruaru','BRA',244247), (289,'Santarém','BRA',241771), (290,'Volta Redonda','BRA',240315), (291,'Novo Hamburgo','BRA',239940), (292,'Caucaia','BRA',238738), (293,'Santa RocksDB','BRA',238473), (294,'Cascavel','BRA',237510), (295,'Guarujá','BRA',237206), (296,'Ribeirão das Neves','BRA',232685), (297,'Governador Valadares','BRA',231724), (298,'Taubaté','BRA',229130), (299,'Imperatriz','BRA',224564), (300,'Gravataí','BRA',223011), (301,'Embu','BRA',222223), (302,'Mossoró','BRA',214901), (303,'Várzea Grande','BRA',214435), (304,'Petrolina','BRA',210540), (305,'Barueri','BRA',208426), (306,'Viamão','BRA',207557), (307,'Ipatinga','BRA',206338), (308,'Juazeiro','BRA',201073), (309,'Juazeiro do Norte','BRA',199636), (310,'Taboão da Serra','BRA',197550), (311,'São José dos Pinhais','BRA',196884), (312,'Magé','BRA',196147), (313,'Suzano','BRA',195434), (314,'São Leopoldo','BRA',189258), (315,'Marília','BRA',188691), (316,'São Carlos','BRA',187122), (317,'Sumaré','BRA',186205), (318,'Presidente Prudente','BRA',185340), (319,'Divinópolis','BRA',185047), (320,'Sete Lagoas','BRA',182984), (321,'Rio Grande','BRA',182222), (322,'Itabuna','BRA',182148), (323,'Jequié','BRA',179128), (324,'Arapiraca','BRA',178988), (325,'Colombo','BRA',177764), (326,'Americana','BRA',177409), (327,'Alvorada','BRA',175574), (328,'Araraquara','BRA',174381), (329,'Itaboraí','BRA',173977), (330,'Santa Bárbara d´Oeste','BRA',171657), (331,'Nova Friburgo','BRA',170697), (332,'Jacareí','BRA',170356), (333,'Araçatuba','BRA',169303), (334,'Barra Mansa','BRA',168953), (335,'Praia Grande','BRA',168434), (336,'Marabá','BRA',167795), (337,'Criciúma','BRA',167661), (338,'Boa Vista','BRA',167185), (339,'Passo Fundo','BRA',166343), (340,'Dourados','BRA',164716), (341,'Santa Luzia','BRA',164704), (342,'Rio Claro','BRA',163551), (343,'Maracanaú','BRA',162022), (344,'Guarapuava','BRA',160510), (345,'Rondonópolis','BRA',155115), (346,'São José','BRA',155105), (347,'Cachoeiro de Itapemirim','BRA',155024), (348,'Nilópolis','BRA',153383), (349,'Itapevi','BRA',150664), (350,'Cabo de Santo Agostinho','BRA',149964), (351,'Camaçari','BRA',149146), (352,'Sobral','BRA',146005), (353,'Itajaí','BRA',145197), (354,'Chapecó','BRA',144158), (355,'Cotia','BRA',140042), (356,'Lages','BRA',139570), (357,'Ferraz de Vasconcelos','BRA',139283), (358,'Indaiatuba','BRA',135968), (359,'Hortolândia','BRA',135755), (360,'Caxias','BRA',133980), (361,'São Caetano do Sul','BRA',133321), (362,'Itu','BRA',132736), (363,'Nossa Senhora do Socorro','BRA',131351), (364,'Parnaíba','BRA',129756), (365,'Poços de Caldas','BRA',129683), (366,'Teresópolis','BRA',128079), (367,'Barreiras','BRA',127801), (368,'Castanhal','BRA',127634), (369,'Alagoinhas','BRA',126820), (370,'Itapecerica da Serra','BRA',126672), (371,'Uruguaiana','BRA',126305), (372,'Paranaguá','BRA',126076), (373,'Ibirité','BRA',125982), (374,'Timon','BRA',125812), (375,'Luziânia','BRA',125597), (376,'Macaé','BRA',125597), (377,'Teófilo Otoni','BRA',124489), (378,'Moji-Guaçu','BRA',123782), (379,'Palmas','BRA',121919), (380,'Pindamonhangaba','BRA',121904), (381,'Francisco Morato','BRA',121197), (382,'Bagé','BRA',120793), (383,'Sapucaia do Sul','BRA',120217), (384,'Cabo Frio','BRA',119503), (385,'Itapetininga','BRA',119391), (386,'Patos de Minas','BRA',119262), (387,'Camaragibe','BRA',118968), (388,'Bragança Paulista','BRA',116929), (389,'Queimados','BRA',115020), (390,'Araguaína','BRA',114948), (391,'Garanhuns','BRA',114603), (392,'Vitória de Santo Antão','BRA',113595), (393,'Santa Rita','BRA',113135), (394,'Barbacena','BRA',113079), (395,'Abaetetuba','BRA',111258), (396,'Jaú','BRA',109965), (397,'Lauro de Freitas','BRA',109236), (398,'Franco da Rocha','BRA',108964), (399,'Teixeira de Freitas','BRA',108441), (400,'Varginha','BRA',108314);
|
Leads to:
|
10.6.0 9118fd360a3da0bba521caf2a35c424968235ac4 (Debug)
|
mysqld: /test/10.6_dbg/storage/innobase/include/btr0btr.h:270: uint16_t btr_page_get_level(const ib_page_t*): Assertion `level <= 50' failed.
|
|
10.6.0 9118fd360a3da0bba521caf2a35c424968235ac4 (Debug)
|
Core was generated by `/test/MD010121-mariadb-10.6.0-linux-x86_64-dbg/bin/mysqld --no-defaults --core-'.
|
Program terminated with signal SIGABRT, Aborted.
|
#0 __pthread_kill (threadid=<optimized out>, signo=signo@entry=6)
|
at ../sysdeps/unix/sysv/linux/pthread_kill.c:56
|
[Current thread is 1 (Thread 0x15428c1f4700 (LWP 3869503))]
|
(gdb) bt
|
#0 __pthread_kill (threadid=<optimized out>, signo=signo@entry=6) at ../sysdeps/unix/sysv/linux/pthread_kill.c:56
|
#1 0x000055adc15bf0d7 in my_write_core (sig=sig@entry=6) at /test/10.6_dbg/mysys/stacktrace.c:424
|
#2 0x000055adc0d53ab1 in handle_fatal_signal (sig=6) at /test/10.6_dbg/sql/signal_handler.cc:330
|
#3 <signal handler called>
|
#4 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50
|
#5 0x00001542a169d859 in __GI_abort () at abort.c:79
|
#6 0x00001542a169d729 in __assert_fail_base (fmt=0x1542a1833588 "%s%s%s:%u: %s%sAssertion `%s' failed.\n%n", assertion=0x55adc197b7d1 "level <= 50", file=0x55adc1970390 "/test/10.6_dbg/storage/innobase/include/btr0btr.h", line=270, function=<optimized out>) at assert.c:92
|
#7 0x00001542a16aef36 in __GI___assert_fail (assertion=assertion@entry=0x55adc197b7d1 "level <= 50", file=file@entry=0x55adc1970390 "/test/10.6_dbg/storage/innobase/include/btr0btr.h", line=line@entry=270, function=function@entry=0x55adc197c328 "uint16_t btr_page_get_level(const ib_page_t*)") at assert.c:101
|
#8 0x000055adc13b909c in btr_page_get_level (page=<optimized out>) at /test/10.6_dbg/storage/innobase/include/btr0btr.h:270
|
#9 0x000055adc13e14f3 in btr_cur_search_to_nth_level_func (index=index@entry=0x154248022f18, level=<optimized out>, tuple=tuple@entry=0x1542480dba58, mode=mode@entry=PAGE_CUR_LE, latch_mode=<optimized out>, latch_mode@entry=34, cursor=cursor@entry=0x15428c1c5430, ahi_latch=<optimized out>, mtr=<optimized out>, autoinc=<optimized out>) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:1806
|
#10 0x000055adc13a7b3c in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=51, tuple=0x1542480dba58, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2339
|
#11 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=111, new_block=0x154280074520, split_rec=0x1542822f408e "\200\003@\031\200", block=0x154280074440, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#12 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1c62d0, offsets=offsets@entry=0x15428c1c62c0, heap=heap@entry=0x15428c1c62b8, tuple=tuple@entry=0x1542480db128, n_ext=n_ext@entry=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#13 0x000055adc13b648e in btr_root_raise_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1c62d0, offsets=offsets@entry=0x15428c1c62c0, heap=heap@entry=0x15428c1c62b8, tuple=tuple@entry=0x1542480db128, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2008
|
#14 0x000055adc13cfce5 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1c62d0, offsets=offsets@entry=0x15428c1c62c0, heap=heap@entry=0x15428c1c62b8, entry=entry@entry=0x1542480db128, rec=rec@entry=0x15428c1c62c8, big_rec=0x15428c1c62b0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3730
|
#15 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=50, tuple=0x1542480db128, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#16 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280074360, split_rec=0x15428222008e "\200\006\024R\200", block=0x1542800715e0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#17 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1c7090, offsets=offsets@entry=0x15428c1c7080, heap=heap@entry=0x15428c1c7078, tuple=tuple@entry=0x1542480da7e8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#18 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1c7090, offsets=offsets@entry=0x15428c1c7080, heap=heap@entry=0x15428c1c7078, entry=entry@entry=0x1542480da7e8, rec=rec@entry=0x15428c1c7088, big_rec=0x15428c1c7070, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#19 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=49, tuple=0x1542480da7e8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#20 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280074280, split_rec=0x15428221808e "\200\005~@\200", block=0x154280071420, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#21 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1c7e50, offsets=offsets@entry=0x15428c1c7e40, heap=heap@entry=0x15428c1c7e38, tuple=tuple@entry=0x1542480d9ea8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#22 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1c7e50, offsets=offsets@entry=0x15428c1c7e40, heap=heap@entry=0x15428c1c7e38, entry=entry@entry=0x1542480d9ea8, rec=rec@entry=0x15428c1c7e48, big_rec=0x15428c1c7e30, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#23 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=48, tuple=0x1542480d9ea8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#24 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x1542800741a0, split_rec=0x15428221408e "\200\005t\260\200", block=0x154280071340, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#25 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1c8c10, offsets=offsets@entry=0x15428c1c8c00, heap=heap@entry=0x15428c1c8bf8, tuple=tuple@entry=0x1542480d9568, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#26 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1c8c10, offsets=offsets@entry=0x15428c1c8c00, heap=heap@entry=0x15428c1c8bf8, entry=entry@entry=0x1542480d9568, rec=rec@entry=0x15428c1c8c08, big_rec=0x15428c1c8bf0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#27 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=47, tuple=0x1542480d9568, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#28 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x1542800740c0, split_rec=0x15428221008e "\200\005i\254\200", block=0x154280071260, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#29 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1c99d0, offsets=offsets@entry=0x15428c1c99c0, heap=heap@entry=0x15428c1c99b8, tuple=tuple@entry=0x1542480d8c28, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#30 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1c99d0, offsets=offsets@entry=0x15428c1c99c0, heap=heap@entry=0x15428c1c99b8, entry=entry@entry=0x1542480d8c28, rec=rec@entry=0x15428c1c99c8, big_rec=0x15428c1c99b0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#31 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=46, tuple=0x1542480d8c28, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#32 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073fe0, split_rec=0x15428220c08e "\200\005", <incomplete sequence \361\200>, block=0x154280071180, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#33 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ca790, offsets=offsets@entry=0x15428c1ca780, heap=heap@entry=0x15428c1ca778, tuple=tuple@entry=0x1542480d82e8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#34 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ca790, offsets=offsets@entry=0x15428c1ca780, heap=heap@entry=0x15428c1ca778, entry=entry@entry=0x1542480d82e8, rec=rec@entry=0x15428c1ca788, big_rec=0x15428c1ca770, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#35 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=45, tuple=0x1542480d82e8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#36 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073f00, split_rec=0x15428220808e "\200\005^È€", block=0x1542800710a0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#37 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cb550, offsets=offsets@entry=0x15428c1cb540, heap=heap@entry=0x15428c1cb538, tuple=tuple@entry=0x1542480d79a8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#38 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cb550, offsets=offsets@entry=0x15428c1cb540, heap=heap@entry=0x15428c1cb538, entry=entry@entry=0x1542480d79a8, rec=rec@entry=0x15428c1cb548, big_rec=0x15428c1cb530, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#39 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=44, tuple=0x1542480d79a8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#40 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073e20, split_rec=0x15428220408e "\200\005U\215\200", block=0x154280070fc0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#41 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cc310, offsets=offsets@entry=0x15428c1cc300, heap=heap@entry=0x15428c1cc2f8, tuple=tuple@entry=0x1542480d7068, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#42 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cc310, offsets=offsets@entry=0x15428c1cc300, heap=heap@entry=0x15428c1cc2f8, entry=entry@entry=0x1542480d7068, rec=rec@entry=0x15428c1cc308, big_rec=0x15428c1cc2f0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#43 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=43, tuple=0x1542480d7068, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#44 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073d40, split_rec=0x15428220008e "\200\005", <incomplete sequence \372\200>, block=0x154280070ee0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#45 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cd0d0, offsets=offsets@entry=0x15428c1cd0c0, heap=heap@entry=0x15428c1cd0b8, tuple=tuple@entry=0x1542480d6728, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#46 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cd0d0, offsets=offsets@entry=0x15428c1cd0c0, heap=heap@entry=0x15428c1cd0b8, entry=entry@entry=0x1542480d6728, rec=rec@entry=0x15428c1cd0c8, big_rec=0x15428c1cd0b0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#47 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=42, tuple=0x1542480d6728, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#48 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073c60, split_rec=0x1542821fc08e "\200\005", <incomplete sequence \346\200>, block=0x154280070e00, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#49 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cde90, offsets=offsets@entry=0x15428c1cde80, heap=heap@entry=0x15428c1cde78, tuple=tuple@entry=0x1542480d5de8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#50 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cde90, offsets=offsets@entry=0x15428c1cde80, heap=heap@entry=0x15428c1cde78, entry=entry@entry=0x1542480d5de8, rec=rec@entry=0x15428c1cde88, big_rec=0x15428c1cde70, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#51 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=41, tuple=0x1542480d5de8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#52 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073b80, split_rec=0x1542821f808e "\200\004\364\066\200", block=0x154280070d20, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#53 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cec50, offsets=offsets@entry=0x15428c1cec40, heap=heap@entry=0x15428c1cec38, tuple=tuple@entry=0x1542480d54a8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#54 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cec50, offsets=offsets@entry=0x15428c1cec40, heap=heap@entry=0x15428c1cec38, entry=entry@entry=0x1542480d54a8, rec=rec@entry=0x15428c1cec48, big_rec=0x15428c1cec30, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#55 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=40, tuple=0x1542480d54a8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#56 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073aa0, split_rec=0x1542821f408e "\200\004Þ€\200", block=0x154280070c40, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#57 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cfa10, offsets=offsets@entry=0x15428c1cfa00, heap=heap@entry=0x15428c1cf9f8, tuple=tuple@entry=0x1542480d2b88, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#58 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1cfa10, offsets=offsets@entry=0x15428c1cfa00, heap=heap@entry=0x15428c1cf9f8, entry=entry@entry=0x1542480d2b88, rec=rec@entry=0x15428c1cfa08, big_rec=0x15428c1cf9f0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#59 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=39, tuple=0x1542480d2b88, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#60 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x1542800739c0, split_rec=0x1542821f008e "\200\004\336\071\200", block=0x154280070b60, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#61 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d07d0, offsets=offsets@entry=0x15428c1d07c0, heap=heap@entry=0x15428c1d07b8, tuple=tuple@entry=0x1542480d2248, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#62 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d07d0, offsets=offsets@entry=0x15428c1d07c0, heap=heap@entry=0x15428c1d07b8, entry=entry@entry=0x1542480d2248, rec=rec@entry=0x15428c1d07c8, big_rec=0x15428c1d07b0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#63 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=38, tuple=0x1542480d2248, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#64 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x1542800738e0, split_rec=0x1542821ec08e "\200\004\335&\200", block=0x154280070a80, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#65 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d1590, offsets=offsets@entry=0x15428c1d1580, heap=heap@entry=0x15428c1d1578, tuple=tuple@entry=0x1542480d1908, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#66 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d1590, offsets=offsets@entry=0x15428c1d1580, heap=heap@entry=0x15428c1d1578, entry=entry@entry=0x1542480d1908, rec=rec@entry=0x15428c1d1588, big_rec=0x15428c1d1570, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#67 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=37, tuple=0x1542480d1908, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#68 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073800, split_rec=0x1542821e808e "\200\004\320\027\200", block=0x1542800709a0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#69 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d2350, offsets=offsets@entry=0x15428c1d2340, heap=heap@entry=0x15428c1d2338, tuple=tuple@entry=0x1542480d0fc8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#70 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d2350, offsets=offsets@entry=0x15428c1d2340, heap=heap@entry=0x15428c1d2338, entry=entry@entry=0x1542480d0fc8, rec=rec@entry=0x15428c1d2348, big_rec=0x15428c1d2330, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#71 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=36, tuple=0x1542480d0fc8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#72 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073720, split_rec=0x1542821e408e "\200\004\311F\200", block=0x1542800708c0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#73 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d3110, offsets=offsets@entry=0x15428c1d3100, heap=heap@entry=0x15428c1d30f8, tuple=tuple@entry=0x1542480d0688, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#74 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d3110, offsets=offsets@entry=0x15428c1d3100, heap=heap@entry=0x15428c1d30f8, entry=entry@entry=0x1542480d0688, rec=rec@entry=0x15428c1d3108, big_rec=0x15428c1d30f0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#75 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=35, tuple=0x1542480d0688, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#76 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073640, split_rec=0x1542821e008e "\200\004\271", <incomplete sequence \366\200>, block=0x1542800707e0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#77 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d3ed0, offsets=offsets@entry=0x15428c1d3ec0, heap=heap@entry=0x15428c1d3eb8, tuple=tuple@entry=0x1542480cfd48, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#78 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d3ed0, offsets=offsets@entry=0x15428c1d3ec0, heap=heap@entry=0x15428c1d3eb8, entry=entry@entry=0x1542480cfd48, rec=rec@entry=0x15428c1d3ec8, big_rec=0x15428c1d3eb0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#79 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=34, tuple=0x1542480cfd48, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#80 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073560, split_rec=0x1542821dc08e "\200\004\236J\200", block=0x154280070700, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#81 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d4c90, offsets=offsets@entry=0x15428c1d4c80, heap=heap@entry=0x15428c1d4c78, tuple=tuple@entry=0x1542480cf408, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#82 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d4c90, offsets=offsets@entry=0x15428c1d4c80, heap=heap@entry=0x15428c1d4c78, entry=entry@entry=0x1542480cf408, rec=rec@entry=0x15428c1d4c88, big_rec=0x15428c1d4c70, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#83 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=33, tuple=0x1542480cf408, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#84 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073480, split_rec=0x1542821d808e "\200\004\234\034\200", block=0x154280070620, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#85 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d5a50, offsets=offsets@entry=0x15428c1d5a40, heap=heap@entry=0x15428c1d5a38, tuple=tuple@entry=0x1542480ceac8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#86 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d5a50, offsets=offsets@entry=0x15428c1d5a40, heap=heap@entry=0x15428c1d5a38, entry=entry@entry=0x1542480ceac8, rec=rec@entry=0x15428c1d5a48, big_rec=0x15428c1d5a30, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#87 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=32, tuple=0x1542480ceac8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#88 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x1542800733a0, split_rec=0x1542821d408e "\200\004\204\277\200", block=0x154280070540, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#89 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d6810, offsets=offsets@entry=0x15428c1d6800, heap=heap@entry=0x15428c1d67f8, tuple=tuple@entry=0x1542480cdbb8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#90 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d6810, offsets=offsets@entry=0x15428c1d6800, heap=heap@entry=0x15428c1d67f8, entry=entry@entry=0x1542480cdbb8, rec=rec@entry=0x15428c1d6808, big_rec=0x15428c1d67f0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#91 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=31, tuple=0x1542480cdbb8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#92 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x1542800732c0, split_rec=0x1542821d008e "\200\004", <incomplete sequence \355\200>, block=0x154280070460, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#93 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d75d0, offsets=offsets@entry=0x15428c1d75c0, heap=heap@entry=0x15428c1d75b8, tuple=tuple@entry=0x1542480cd278, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#94 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d75d0, offsets=offsets@entry=0x15428c1d75c0, heap=heap@entry=0x15428c1d75b8, entry=entry@entry=0x1542480cd278, rec=rec@entry=0x15428c1d75c8, big_rec=0x15428c1d75b0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#95 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=30, tuple=0x1542480cd278, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#96 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x1542800731e0, split_rec=0x1542821cc08e "\200\004m[\200", block=0x154280070380, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#97 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d8390, offsets=offsets@entry=0x15428c1d8380, heap=heap@entry=0x15428c1d8378, tuple=tuple@entry=0x1542480ca958, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#98 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d8390, offsets=offsets@entry=0x15428c1d8380, heap=heap@entry=0x15428c1d8378, entry=entry@entry=0x1542480ca958, rec=rec@entry=0x15428c1d8388, big_rec=0x15428c1d8370, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#99 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=29, tuple=0x1542480ca958, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#100 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073100, split_rec=0x1542821c808e "\200\004`\200\200", block=0x1542800702a0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#101 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d9150, offsets=offsets@entry=0x15428c1d9140, heap=heap@entry=0x15428c1d9138, tuple=tuple@entry=0x1542480ca018, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#102 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d9150, offsets=offsets@entry=0x15428c1d9140, heap=heap@entry=0x15428c1d9138, entry=entry@entry=0x1542480ca018, rec=rec@entry=0x15428c1d9148, big_rec=0x15428c1d9130, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#103 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=28, tuple=0x1542480ca018, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#104 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280073020, split_rec=0x1542821c408e "\200\004", <incomplete sequence \375\200>, block=0x1542800701c0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#105 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d9f10, offsets=offsets@entry=0x15428c1d9f00, heap=heap@entry=0x15428c1d9ef8, tuple=tuple@entry=0x1542480c96d8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#106 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1d9f10, offsets=offsets@entry=0x15428c1d9f00, heap=heap@entry=0x15428c1d9ef8, entry=entry@entry=0x1542480c96d8, rec=rec@entry=0x15428c1d9f08, big_rec=0x15428c1d9ef0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#107 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=27, tuple=0x1542480c96d8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#108 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072f40, split_rec=0x1542821c008e "\200\004]j\200", block=0x1542800700e0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#109 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1dacd0, offsets=offsets@entry=0x15428c1dacc0, heap=heap@entry=0x15428c1dacb8, tuple=tuple@entry=0x1542480c8d98, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#110 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1dacd0, offsets=offsets@entry=0x15428c1dacc0, heap=heap@entry=0x15428c1dacb8, entry=entry@entry=0x1542480c8d98, rec=rec@entry=0x15428c1dacc8, big_rec=0x15428c1dacb0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#111 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=26, tuple=0x1542480c8d98, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#112 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072e60, split_rec=0x1542821bc08e "\200\004NU\200", block=0x154280070000, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#113 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1dba90, offsets=offsets@entry=0x15428c1dba80, heap=heap@entry=0x15428c1dba78, tuple=tuple@entry=0x1542480c8458, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#114 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1dba90, offsets=offsets@entry=0x15428c1dba80, heap=heap@entry=0x15428c1dba78, entry=entry@entry=0x1542480c8458, rec=rec@entry=0x15428c1dba88, big_rec=0x15428c1dba70, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#115 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=25, tuple=0x1542480c8458, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#116 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072d80, split_rec=0x1542821b808e "\200\004MH\200", block=0x15428006ff20, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#117 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1dc850, offsets=offsets@entry=0x15428c1dc840, heap=heap@entry=0x15428c1dc838, tuple=tuple@entry=0x1542480c7b18, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#118 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1dc850, offsets=offsets@entry=0x15428c1dc840, heap=heap@entry=0x15428c1dc838, entry=entry@entry=0x1542480c7b18, rec=rec@entry=0x15428c1dc848, big_rec=0x15428c1dc830, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#119 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=24, tuple=0x1542480c7b18, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#120 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072ca0, split_rec=0x1542821b408e "\200\004B\217\200", block=0x15428006fe40, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#121 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1dd610, offsets=offsets@entry=0x15428c1dd600, heap=heap@entry=0x15428c1dd5f8, tuple=tuple@entry=0x1542480c71d8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#122 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1dd610, offsets=offsets@entry=0x15428c1dd600, heap=heap@entry=0x15428c1dd5f8, entry=entry@entry=0x1542480c71d8, rec=rec@entry=0x15428c1dd608, big_rec=0x15428c1dd5f0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#123 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=23, tuple=0x1542480c71d8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#124 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072bc0, split_rec=0x1542821b008e "\200\004\"\032\200", block=0x15428006fd60, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#125 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1de3d0, offsets=offsets@entry=0x15428c1de3c0, heap=heap@entry=0x15428c1de3b8, tuple=tuple@entry=0x1542480c6898, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#126 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1de3d0, offsets=offsets@entry=0x15428c1de3c0, heap=heap@entry=0x15428c1de3b8, entry=entry@entry=0x1542480c6898, rec=rec@entry=0x15428c1de3c8, big_rec=0x15428c1de3b0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#127 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=22, tuple=0x1542480c6898, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#128 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072ae0, split_rec=0x1542821ac08e "\200\004!\"\200", block=0x15428006fc80, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#129 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1df190, offsets=offsets@entry=0x15428c1df180, heap=heap@entry=0x15428c1df178, tuple=tuple@entry=0x1542480c3f78, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#130 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1df190, offsets=offsets@entry=0x15428c1df180, heap=heap@entry=0x15428c1df178, entry=entry@entry=0x1542480c3f78, rec=rec@entry=0x15428c1df188, big_rec=0x15428c1df170, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#131 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=21, tuple=0x1542480c3f78, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#132 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072a00, split_rec=0x1542821a808e "\200\004", <incomplete sequence \355\200>, block=0x15428006fba0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#133 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1dff50, offsets=offsets@entry=0x15428c1dff40, heap=heap@entry=0x15428c1dff38, tuple=tuple@entry=0x1542480c3638, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#134 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1dff50, offsets=offsets@entry=0x15428c1dff40, heap=heap@entry=0x15428c1dff38, entry=entry@entry=0x1542480c3638, rec=rec@entry=0x15428c1dff48, big_rec=0x15428c1dff30, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#135 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=20, tuple=0x1542480c3638, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#136 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072920, split_rec=0x1542821a408e "\200\003\365Ñ€", block=0x15428006fac0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#137 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e0d10, offsets=offsets@entry=0x15428c1e0d00, heap=heap@entry=0x15428c1e0cf8, tuple=tuple@entry=0x1542480c2cf8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#138 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e0d10, offsets=offsets@entry=0x15428c1e0d00, heap=heap@entry=0x15428c1e0cf8, entry=entry@entry=0x1542480c2cf8, rec=rec@entry=0x15428c1e0d08, big_rec=0x15428c1e0cf0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#139 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=19, tuple=0x1542480c2cf8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#140 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072840, split_rec=0x1542821a008e "\200\003\365a\200", block=0x15428006f9e0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#141 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e1ad0, offsets=offsets@entry=0x15428c1e1ac0, heap=heap@entry=0x15428c1e1ab8, tuple=tuple@entry=0x1542480c23b8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#142 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e1ad0, offsets=offsets@entry=0x15428c1e1ac0, heap=heap@entry=0x15428c1e1ab8, entry=entry@entry=0x1542480c23b8, rec=rec@entry=0x15428c1e1ac8, big_rec=0x15428c1e1ab0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#143 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=18, tuple=0x1542480c23b8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#144 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072760, split_rec=0x15428219c08e "\200\003\350!\200", block=0x15428006f900, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#145 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e2890, offsets=offsets@entry=0x15428c1e2880, heap=heap@entry=0x15428c1e2878, tuple=tuple@entry=0x1542480c1a78, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#146 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e2890, offsets=offsets@entry=0x15428c1e2880, heap=heap@entry=0x15428c1e2878, entry=entry@entry=0x1542480c1a78, rec=rec@entry=0x15428c1e2888, big_rec=0x15428c1e2870, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#147 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=17, tuple=0x1542480c1a78, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#148 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072680, split_rec=0x15428219808e "\200\003\343", <incomplete sequence \372\200>, block=0x15428006f820, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#149 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e3650, offsets=offsets@entry=0x15428c1e3640, heap=heap@entry=0x15428c1e3638, tuple=tuple@entry=0x1542480bf158, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#150 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e3650, offsets=offsets@entry=0x15428c1e3640, heap=heap@entry=0x15428c1e3638, entry=entry@entry=0x1542480bf158, rec=rec@entry=0x15428c1e3648, big_rec=0x15428c1e3630, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#151 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=16, tuple=0x1542480bf158, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#152 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x1542800725a0, split_rec=0x15428219408e "\200\003Þ“\200", block=0x15428006f740, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#153 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e4410, offsets=offsets@entry=0x15428c1e4400, heap=heap@entry=0x15428c1e43f8, tuple=tuple@entry=0x1542480be818, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#154 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e4410, offsets=offsets@entry=0x15428c1e4400, heap=heap@entry=0x15428c1e43f8, entry=entry@entry=0x1542480be818, rec=rec@entry=0x15428c1e4408, big_rec=0x15428c1e43f0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#155 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=15, tuple=0x1542480be818, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#156 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x1542800724c0, split_rec=0x15428219008e "\200\003͉\200", block=0x15428006f660, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#157 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e51d0, offsets=offsets@entry=0x15428c1e51c0, heap=heap@entry=0x15428c1e51b8, tuple=tuple@entry=0x1542480bded8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#158 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e51d0, offsets=offsets@entry=0x15428c1e51c0, heap=heap@entry=0x15428c1e51b8, entry=entry@entry=0x1542480bded8, rec=rec@entry=0x15428c1e51c8, big_rec=0x15428c1e51b0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#159 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=14, tuple=0x1542480bded8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#160 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x1542800723e0, split_rec=0x15428218c08e "\200\003Ê™\200", block=0x15428006f580, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#161 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e5f90, offsets=offsets@entry=0x15428c1e5f80, heap=heap@entry=0x15428c1e5f78, tuple=tuple@entry=0x1542480bd598, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#162 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e5f90, offsets=offsets@entry=0x15428c1e5f80, heap=heap@entry=0x15428c1e5f78, entry=entry@entry=0x1542480bd598, rec=rec@entry=0x15428c1e5f88, big_rec=0x15428c1e5f70, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#163 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=13, tuple=0x1542480bd598, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#164 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072300, split_rec=0x15428218808e "\200\003\276", <incomplete sequence \371\200>, block=0x15428006f4a0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#165 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e6d50, offsets=offsets@entry=0x15428c1e6d40, heap=heap@entry=0x15428c1e6d38, tuple=tuple@entry=0x1542480bcc58, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#166 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e6d50, offsets=offsets@entry=0x15428c1e6d40, heap=heap@entry=0x15428c1e6d38, entry=entry@entry=0x1542480bcc58, rec=rec@entry=0x15428c1e6d48, big_rec=0x15428c1e6d30, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#167 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=12, tuple=0x1542480bcc58, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#168 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072220, split_rec=0x15428218408e "\200\003\272\233\200", block=0x15428006f3c0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#169 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e7b10, offsets=offsets@entry=0x15428c1e7b00, heap=heap@entry=0x15428c1e7af8, tuple=tuple@entry=0x1542480bc318, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#170 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e7b10, offsets=offsets@entry=0x15428c1e7b00, heap=heap@entry=0x15428c1e7af8, entry=entry@entry=0x1542480bc318, rec=rec@entry=0x15428c1e7b08, big_rec=0x15428c1e7af0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#171 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=11, tuple=0x1542480bc318, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#172 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072140, split_rec=0x15428218008e "\200\003\272\027\200", block=0x15428006f2e0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#173 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e88d0, offsets=offsets@entry=0x15428c1e88c0, heap=heap@entry=0x15428c1e88b8, tuple=tuple@entry=0x1542480b99f8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#174 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e88d0, offsets=offsets@entry=0x15428c1e88c0, heap=heap@entry=0x15428c1e88b8, entry=entry@entry=0x1542480b99f8, rec=rec@entry=0x15428c1e88c8, big_rec=0x15428c1e88b0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#175 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=10, tuple=0x1542480b99f8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#176 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280072060, split_rec=0x15428217c08e "\200\003\260k\200", block=0x15428006f200, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#177 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e9690, offsets=offsets@entry=0x15428c1e9680, heap=heap@entry=0x15428c1e9678, tuple=tuple@entry=0x1542480b90b8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#178 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1e9690, offsets=offsets@entry=0x15428c1e9680, heap=heap@entry=0x15428c1e9678, entry=entry@entry=0x1542480b90b8, rec=rec@entry=0x15428c1e9688, big_rec=0x15428c1e9670, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#179 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=9, tuple=0x1542480b90b8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#180 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280071f80, split_rec=0x15428217808e "\200\003\252\273\200", block=0x15428006f120, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#181 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ea450, offsets=offsets@entry=0x15428c1ea440, heap=heap@entry=0x15428c1ea438, tuple=tuple@entry=0x1542480b8778, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#182 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ea450, offsets=offsets@entry=0x15428c1ea440, heap=heap@entry=0x15428c1ea438, entry=entry@entry=0x1542480b8778, rec=rec@entry=0x15428c1ea448, big_rec=0x15428c1ea430, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#183 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=8, tuple=0x1542480b8778, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#184 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280071ea0, split_rec=0x15428217408e "\200\003\251D\200", block=0x15428006f040, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#185 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1eb210, offsets=offsets@entry=0x15428c1eb200, heap=heap@entry=0x15428c1eb1f8, tuple=tuple@entry=0x1542480b7e38, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#186 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1eb210, offsets=offsets@entry=0x15428c1eb200, heap=heap@entry=0x15428c1eb1f8, entry=entry@entry=0x1542480b7e38, rec=rec@entry=0x15428c1eb208, big_rec=0x15428c1eb1f0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#187 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=7, tuple=0x1542480b7e38, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#188 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280071dc0, split_rec=0x15428217008e "\200\003\244\222\200", block=0x15428006ef60, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#189 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ebfd0, offsets=offsets@entry=0x15428c1ebfc0, heap=heap@entry=0x15428c1ebfb8, tuple=tuple@entry=0x1542480b5518, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#190 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ebfd0, offsets=offsets@entry=0x15428c1ebfc0, heap=heap@entry=0x15428c1ebfb8, entry=entry@entry=0x1542480b5518, rec=rec@entry=0x15428c1ebfc8, big_rec=0x15428c1ebfb0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#191 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=6, tuple=0x1542480b5518, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#192 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280071ce0, split_rec=0x15428216c08e "\200\003\243\211\200", block=0x15428006ee80, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#193 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ecd90, offsets=offsets@entry=0x15428c1ecd80, heap=heap@entry=0x15428c1ecd78, tuple=tuple@entry=0x1542480b4bd8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#194 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ecd90, offsets=offsets@entry=0x15428c1ecd80, heap=heap@entry=0x15428c1ecd78, entry=entry@entry=0x1542480b4bd8, rec=rec@entry=0x15428c1ecd88, big_rec=0x15428c1ecd70, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#195 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=5, tuple=0x1542480b4bd8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#196 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280071c00, split_rec=0x15428216808e "\200\003\237Æ€", block=0x15428006eda0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#197 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1edb50, offsets=offsets@entry=0x15428c1edb40, heap=heap@entry=0x15428c1edb38, tuple=tuple@entry=0x1542480b4298, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#198 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1edb50, offsets=offsets@entry=0x15428c1edb40, heap=heap@entry=0x15428c1edb38, entry=entry@entry=0x1542480b4298, rec=rec@entry=0x15428c1edb48, big_rec=0x15428c1edb30, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#199 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=4, tuple=0x1542480b4298, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#200 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280071b20, split_rec=0x15428216408e "\200\003\236\226\200", block=0x15428006ecc0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#201 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ee910, offsets=offsets@entry=0x15428c1ee900, heap=heap@entry=0x15428c1ee8f8, tuple=tuple@entry=0x1542480b20f8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#202 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ee910, offsets=offsets@entry=0x15428c1ee900, heap=heap@entry=0x15428c1ee8f8, entry=entry@entry=0x1542480b20f8, rec=rec@entry=0x15428c1ee908, big_rec=0x15428c1ee8f0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#203 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=3, tuple=0x1542480b20f8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#204 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280071a40, split_rec=0x15428216008e "\200\003\214", <incomplete sequence \355\200>, block=0x15428006ebe0, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#205 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ef6d0, offsets=offsets@entry=0x15428c1ef6c0, heap=heap@entry=0x15428c1ef6b8, tuple=tuple@entry=0x1542480b17b8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#206 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1ef6d0, offsets=offsets@entry=0x15428c1ef6c0, heap=heap@entry=0x15428c1ef6b8, entry=entry@entry=0x1542480b17b8, rec=rec@entry=0x15428c1ef6c8, big_rec=0x15428c1ef6b0, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#207 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=2, tuple=0x1542480b17b8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#208 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280071960, split_rec=0x15428215c08e "\200\003\211,\200", block=0x15428006eb00, index=0x154248022f18, flags=7) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#209 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1f0490, offsets=offsets@entry=0x15428c1f0480, heap=heap@entry=0x15428c1f0478, tuple=tuple@entry=0x1542480afca8, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#210 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x15428c1f0490, offsets=offsets@entry=0x15428c1f0480, heap=heap@entry=0x15428c1f0478, entry=entry@entry=0x1542480afca8, rec=rec@entry=0x15428c1f0488, big_rec=0x15428c1f0470, n_ext=<optimized out>, thr=0x0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#211 0x000055adc13a7e22 in btr_insert_on_non_leaf_level (flags=flags@entry=0, index=index@entry=0x154248022f18, level=<optimized out>, level@entry=1, tuple=0x1542480afca8, mtr=mtr@entry=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2375
|
#212 0x000055adc13b4ed5 in btr_attach_half_pages (mtr=0x15428c1f18b0, direction=112, new_block=0x154280071880, split_rec=0x15428215808a "\200\003\177\n\200", block=0x15428006ea20, index=0x154248022f18, flags=0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2480
|
#213 btr_page_split_and_insert (flags=flags@entry=0, cursor=cursor@entry=0x15428c1f1330, offsets=offsets@entry=0x15428c1f1288, heap=heap@entry=0x15428c1f1278, tuple=tuple@entry=0x154248021c30, n_ext=0, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0btr.cc:2869
|
#214 0x000055adc13cf925 in btr_cur_pessimistic_insert (flags=flags@entry=0, cursor=cursor@entry=0x15428c1f1330, offsets=offsets@entry=0x15428c1f1288, heap=heap@entry=0x15428c1f1278, entry=entry@entry=0x154248021c30, rec=rec@entry=0x15428c1f12e0, big_rec=0x15428c1f13d0, n_ext=<optimized out>, thr=0x15424804f738, mtr=0x15428c1f18b0) at /test/10.6_dbg/storage/innobase/btr/btr0cur.cc:3733
|
#215 0x000055adc12b2788 in row_ins_sec_index_entry_low (flags=flags@entry=0, mode=mode@entry=33, index=index@entry=0x154248022f18, offsets_heap=<optimized out>, offsets_heap@entry=0x15424809afd8, heap=heap@entry=0x1542480aee98, entry=entry@entry=0x154248021c30, trx_id=0, thr=0x15424804f738) at /test/10.6_dbg/storage/innobase/row/row0ins.cc:3094
|
#216 0x000055adc12b3140 in row_ins_sec_index_entry (index=index@entry=0x154248022f18, entry=entry@entry=0x154248021c30, thr=thr@entry=0x15424804f738, check_foreign=check_foreign@entry=true) at /test/10.6_dbg/storage/innobase/row/row0ins.cc:3287
|
#217 0x000055adc12b4b89 in row_ins_index_entry (thr=0x15424804f738, entry=0x154248021c30, index=0x154248022f18) at /test/10.6_dbg/storage/innobase/row/row0ins.cc:3320
|
#218 row_ins_index_entry_step (thr=0x15424804f738, node=0x15424804f4a0) at /test/10.6_dbg/storage/innobase/row/row0ins.cc:3487
|
#219 row_ins (thr=0x15424804f738, node=0x15424804f4a0) at /test/10.6_dbg/storage/innobase/row/row0ins.cc:3611
|
#220 row_ins_step (thr=thr@entry=0x15424804f738) at /test/10.6_dbg/storage/innobase/row/row0ins.cc:3750
|
#221 0x000055adc12d87b7 in row_insert_for_mysql (mysql_rec=mysql_rec@entry=0x15424801f458 "\377+\001", prebuilt=0x15424804ef08, ins_mode=ROW_INS_NORMAL) at /test/10.6_dbg/storage/innobase/row/row0mysql.cc:1420
|
#222 0x000055adc1162bef in ha_innobase::write_row (this=0x1542480246b0, record=0x15424801f458 "\377+\001") at /test/10.6_dbg/storage/innobase/handler/ha_innodb.cc:7366
|
#223 0x000055adc0d67e67 in handler::ha_write_row (this=0x1542480246b0, buf=0x15424801f458 "\377+\001") at /test/10.6_dbg/sql/handler.cc:7144
|
#224 0x000055adc0a3d2ea in write_record (thd=thd@entry=0x154248000db8, table=table@entry=0x1542480257f8, info=info@entry=0x15428c1f2c60, sink=sink@entry=0x0) at /test/10.6_dbg/sql/sql_insert.cc:2104
|
#225 0x000055adc0a499a5 in mysql_insert (thd=thd@entry=0x154248000db8, table_list=0x154248015c70, fields=@0x154248005e28: {<base_list> = {<Sql_alloc> = {<No data fields>}, first = 0x55adc20580e0 <end_of_list>, last = 0x154248005e28, elements = 0}, <No data fields>}, values_list=@0x154248005e70: {<base_list> = {<Sql_alloc> = {<No data fields>}, first = 0x154248016a98, last = 0x1542480499d8, elements = 200}, <No data fields>}, update_fields=@0x154248005e58: {<base_list> = {<Sql_alloc> = {<No data fields>}, first = 0x55adc20580e0 <end_of_list>, last = 0x154248005e58, elements = 0}, <No data fields>}, update_values=@0x154248005e40: {<base_list> = {<Sql_alloc> = {<No data fields>}, first = 0x55adc20580e0 <end_of_list>, last = 0x154248005e40, elements = 0}, <No data fields>}, duplic=DUP_ERROR, ignore=false, result=0x0) at /test/10.6_dbg/sql/sql_insert.cc:1099
|
#226 0x000055adc0a9062d in mysql_execute_command (thd=thd@entry=0x154248000db8) at /test/10.6_dbg/sql/sql_parse.cc:4439
|
#227 0x000055adc0a7b072 in mysql_parse (thd=thd@entry=0x154248000db8, rawbuf=<optimized out>, length=<optimized out>, parser_state=parser_state@entry=0x15428c1f33d0) at /test/10.6_dbg/sql/sql_parse.cc:7881
|
#228 0x000055adc0a891ec in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x154248000db8, packet=packet@entry=0x154248008d39 "INSERT INTO t1 VALUES (201,'Sarajevo','BIH',360000), (202,'Banja Luka','BIH',143079), (203,'Zenica','BIH',96027), (204,'GabORone','BWA',213017), (205,'Francistown','BWA',101805), (206,'São Paulo','BR"..., packet_length=packet_length@entry=6784) at /test/10.6_dbg/sql/sql_class.h:1293
|
#229 0x000055adc0a8c52d in do_command (thd=0x154248000db8) at /test/10.6_dbg/sql/sql_parse.cc:1348
|
#230 0x000055adc0be87fc in do_handle_one_connection (connect=<optimized out>, connect@entry=0x55adc4681f38, put_in_cache=put_in_cache@entry=true) at /test/10.6_dbg/sql/sql_connect.cc:1410
|
#231 0x000055adc0be8f03 in handle_one_connection (arg=arg@entry=0x55adc4681f38) at /test/10.6_dbg/sql/sql_connect.cc:1312
|
#232 0x000055adc109e88f in pfs_spawn_thread (arg=0x55adc45d6b68) at /test/10.6_dbg/storage/perfschema/pfs.cc:2201
|
#233 0x00001542a1bab609 in start_thread (arg=<optimized out>) at pthread_create.c:477
|
#234 0x00001542a179a293 in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95
|
Bug confirmed present in:
MariaDB: 10.2.37 (dbg), 10.3.28 (dbg), 10.4.18 (dbg), 10.5.9 (dbg), 10.6.0 (dbg)
MySQL: 5.5.62 (dbg), 5.6.50 (dbg), 5.7.32 (dbg), 8.0.22 (dbg)
Bug (or feature/syntax) confirmed not present in:
MariaDB: 10.2.37 (opt), 10.3.28 (opt), 10.4.18 (opt), 10.5.9 (opt), 10.6.0 (opt)
MySQL: 5.5.62 (opt), 5.6.50 (opt), 5.7.32 (opt), 8.0.22 (opt)
|
|
marko kevg Any thoughts on the block->page.flush_observer == __null || block->page.flush_observer == observer assert specifically?
|
|
The design constraint should be a minimum B-tree branching degree of 2. If each page has at least 2 children, then it should be impossible to exceed the tree height of 32 without also exceeding the maximum number of pages in a tablespaces, which is somewhat less than 2³² index pages.
|
|
julien.fritsch, Roel, why this is still a "bug" after marko's explanation?
|
|
vlad.lesin I do not see how Marko's input is a justification for the debug assert as much as it is a highlighting of a design issue. If the design is wrong, and it is not going to be fixed (or should it be?) then at least the assert can be changed to be more than 50, to whatever maximum it can be now, so we do not see this bug (which halts test runs!) during testing.
|
|
Roel, the flush_observer was removed in MDEV-19747 (10.5.1).
vlad.lesin, let me try to put it in other words.
Each internal node in a B-tree (anything between the root and the leaf pages, excluding the leaf pages) must normally point to at least 2 child pages. This may be temporarily violated during some tree restructuring (splitting or merging leaf pages), see for example btr_lift_page_up(). An internal page that has only one child, it would serve no useful purpose.
The maximum number of pages in a tablespace is 2³². Because any InnoDB B-tree resides in a single tablespace, the maximum number of pages in an InnoDB B-tree is somewhat less than 2³². Now, let us imagine a maximum-size B-tree. It should have somewhere between 2³¹ and 2³² leaf pages, as well as a similar amount of non-leaf pages. The height of the tree (the number of pages between the root and leaf level) should be at most 31, nowhere near 50.
I think that we must analyze why the assertion fails, or why a non-branching chain of non-leaf pages is being created.
|
|
Additional testcase which generates 3 additional stacks
CREATE TABLE t (a INT,INDEX (a));
|
INSERT INTO t VALUES (1),(2),(3),(4),(5),(6),(7),(8);
|
SET GLOBAL innodb_limit_optimistic_insert_debug=2;
|
INSERT INTO t SELECT t.a FROM t t,t t2;
|
INSERT INTO t SELECT t.a FROM t t,t t2;
|
Leads to:
|
10.11.0 bc563f1a4b0b38de3b41fd0f0d3d8b7f1aacbd8b (Debug)
|
mysqld: /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:545: buf_block_t* btr_page_alloc(dict_index_t*, uint32_t, byte, ulint, mtr_t*, mtr_t*, dberr_t*): Assertion `level < 50' failed.
|
|
10.11.0 bc563f1a4b0b38de3b41fd0f0d3d8b7f1aacbd8b (Debug)
|
Core was generated by `/test/MD190822-mariadb-10.11.0-linux-x86_64-dbg/bin/mysqld --no-defaults --core'.
|
Program terminated with signal SIGABRT, Aborted.
|
#0 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50
|
[Current thread is 1 (Thread 0x14cf7030a700 (LWP 3417197))]
|
(gdb) bt
|
#0 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50
|
#1 0x000014cf89899859 in __GI_abort () at abort.c:79
|
#2 0x000014cf89899729 in __assert_fail_base (fmt=0x14cf89a2f588 "%s%s%s:%u: %s%sAssertion `%s' failed.\n%n", assertion=0x55e8aad00207 "level < 50", file=0x55e8aad00670 "/test/10.11_dbg/storage/innobase/btr/btr0btr.cc", line=545, function=<optimized out>) at assert.c:92
|
#3 0x000014cf898aafd6 in __GI___assert_fail (assertion=assertion@entry=0x55e8aad00207 "level < 50", file=file@entry=0x55e8aad00670 "/test/10.11_dbg/storage/innobase/btr/btr0btr.cc", line=line@entry=545, function=function@entry=0x55e8aad00bf8 "buf_block_t* btr_page_alloc(dict_index_t*, uint32_t, byte, ulint, mtr_t*, mtr_t*, dberr_t*)") at assert.c:101
|
#4 0x000055e8aa6e5d04 in btr_page_alloc (index=index@entry=0x14cf18021fd0, hint_page_no=hint_page_no@entry=0, file_direction=file_direction@entry=113 'q', level=level@entry=50, mtr=mtr@entry=0x14cf70307510, init_mtr=init_mtr@entry=0x14cf70307510, err=0x14cf702db26c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:545
|
#5 0x000055e8aa6f1d1f in btr_root_raise_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702db300, offsets=offsets@entry=0x14cf702db2f8, heap=heap@entry=0x14cf702db2f0, tuple=tuple@entry=0x14cf18210630, n_ext=0, mtr=0x14cf70307510, err=0x14cf702db26c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:1805
|
#6 0x000055e8aa70f9d0 in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702db300, offsets=offsets@entry=0x14cf702db2f8, heap=heap@entry=0x14cf702db2f0, entry=entry@entry=0x14cf18210630, rec=rec@entry=0x14cf702db2e8, big_rec=0x14cf702db2e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/fil0fil.h:487
|
#7 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=50, tuple=0x14cf18210630, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#8 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf75e03370, split_rec=0x14cf18117456 "\200", block=0x14cf75604e40, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#9 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702dc100, offsets=offsets@entry=0x14cf702dc0f8, heap=heap@entry=0x14cf702dc0f0, tuple=tuple@entry=0x14cf1820fd10, n_ext=0, mtr=0x14cf70307510, err=0x14cf702dc06c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#10 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702dc100, offsets=offsets@entry=0x14cf702dc0f8, heap=heap@entry=0x14cf702dc0f0, entry=entry@entry=0x14cf1820fd10, rec=rec@entry=0x14cf702dc0e8, big_rec=0x14cf702dc0e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#11 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=49, tuple=0x14cf1820fd10, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#12 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf793ff5b0, split_rec=0x14cf18136966 "\200", block=0x14cf75402c20, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#13 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702dcf00, offsets=offsets@entry=0x14cf702dcef8, heap=heap@entry=0x14cf702dcef0, tuple=tuple@entry=0x14cf1820f3f0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702dce6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#14 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702dcf00, offsets=offsets@entry=0x14cf702dcef8, heap=heap@entry=0x14cf702dcef0, entry=entry@entry=0x14cf1820f3f0, rec=rec@entry=0x14cf702dcee8, big_rec=0x14cf702dcee0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#15 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=48, tuple=0x14cf1820f3f0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#16 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79604480, split_rec=0x14cf18126e36 "\200", block=0x14cf7a204f10, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#17 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ddd00, offsets=offsets@entry=0x14cf702ddcf8, heap=heap@entry=0x14cf702ddcf0, tuple=tuple@entry=0x14cf1820ead0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702ddc6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#18 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ddd00, offsets=offsets@entry=0x14cf702ddcf8, heap=heap@entry=0x14cf702ddcf0, entry=entry@entry=0x14cf1820ead0, rec=rec@entry=0x14cf702ddce8, big_rec=0x14cf702ddce0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#19 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=47, tuple=0x14cf1820ead0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#20 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf793ffea0, split_rec=0x14cf18091fd6 "\200", block=0x14cf79e00a00, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#21 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702deb00, offsets=offsets@entry=0x14cf702deaf8, heap=heap@entry=0x14cf702deaf0, tuple=tuple@entry=0x14cf1820e1b0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702dea6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#22 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702deb00, offsets=offsets@entry=0x14cf702deaf8, heap=heap@entry=0x14cf702deaf0, entry=entry@entry=0x14cf1820e1b0, rec=rec@entry=0x14cf702deae8, big_rec=0x14cf702deae0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#23 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=46, tuple=0x14cf1820e1b0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#24 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=112, new_block=0x14cf79400110, split_rec=0x14cf7a608092 "\200", block=0x14cf7a5ff000, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#25 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702df900, offsets=offsets@entry=0x14cf702df8f8, heap=heap@entry=0x14cf702df8f0, tuple=tuple@entry=0x14cf1820d890, n_ext=0, mtr=0x14cf70307510, err=0x14cf702df86c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#26 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702df900, offsets=offsets@entry=0x14cf702df8f8, heap=heap@entry=0x14cf702df8f0, entry=entry@entry=0x14cf1820d890, rec=rec@entry=0x14cf702df8e8, big_rec=0x14cf702df8e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#27 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=45, tuple=0x14cf1820d890, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#28 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf793ffd00, split_rec=0x14cf181933a6 "\200", block=0x14cf79601cb0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#29 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e0700, offsets=offsets@entry=0x14cf702e06f8, heap=heap@entry=0x14cf702e06f0, tuple=tuple@entry=0x14cf1820cf70, n_ext=0, mtr=0x14cf70307510, err=0x14cf702e066c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#30 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e0700, offsets=offsets@entry=0x14cf702e06f8, heap=heap@entry=0x14cf702e06f0, entry=entry@entry=0x14cf1820cf70, rec=rec@entry=0x14cf702e06e8, big_rec=0x14cf702e06e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#31 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=44, tuple=0x14cf1820cf70, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#32 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79c020c0, split_rec=0x14cf180db5f6 "\200", block=0x14cf78005180, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#33 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e1500, offsets=offsets@entry=0x14cf702e14f8, heap=heap@entry=0x14cf702e14f0, tuple=tuple@entry=0x14cf1820c650, n_ext=0, mtr=0x14cf70307510, err=0x14cf702e146c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#34 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e1500, offsets=offsets@entry=0x14cf702e14f8, heap=heap@entry=0x14cf702e14f0, entry=entry@entry=0x14cf1820c650, rec=rec@entry=0x14cf702e14e8, big_rec=0x14cf702e14e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#35 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=43, tuple=0x14cf1820c650, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#36 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79400380, split_rec=0x14cf181ce356 "\200", block=0x14cf79a00450, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#37 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e2300, offsets=offsets@entry=0x14cf702e22f8, heap=heap@entry=0x14cf702e22f0, tuple=tuple@entry=0x14cf1820bd30, n_ext=0, mtr=0x14cf70307510, err=0x14cf702e226c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#38 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e2300, offsets=offsets@entry=0x14cf702e22f8, heap=heap@entry=0x14cf702e22f0, entry=entry@entry=0x14cf1820bd30, rec=rec@entry=0x14cf702e22e8, big_rec=0x14cf702e22e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#39 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=42, tuple=0x14cf1820bd30, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#40 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79400040, split_rec=0x14cf1808d076 "\200", block=0x14cf794001e0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#41 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e3100, offsets=offsets@entry=0x14cf702e30f8, heap=heap@entry=0x14cf702e30f0, tuple=tuple@entry=0x14cf1820b410, n_ext=0, mtr=0x14cf70307510, err=0x14cf702e306c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#42 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e3100, offsets=offsets@entry=0x14cf702e30f8, heap=heap@entry=0x14cf702e30f0, entry=entry@entry=0x14cf1820b410, rec=rec@entry=0x14cf702e30e8, big_rec=0x14cf702e30e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#43 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=41, tuple=0x14cf1820b410, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#44 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79400450, split_rec=0x14cf1807f986 "\200", block=0x14cf772017d0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#45 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e3f00, offsets=offsets@entry=0x14cf702e3ef8, heap=heap@entry=0x14cf702e3ef0, tuple=tuple@entry=0x14cf1820aaf0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702e3e6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#46 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e3f00, offsets=offsets@entry=0x14cf702e3ef8, heap=heap@entry=0x14cf702e3ef0, entry=entry@entry=0x14cf1820aaf0, rec=rec@entry=0x14cf702e3ee8, big_rec=0x14cf702e3ee0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#47 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=40, tuple=0x14cf1820aaf0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#48 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf795ffd00, split_rec=0x14cf1814a5c6 "\200", block=0x14cf794002b0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#49 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e4d00, offsets=offsets@entry=0x14cf702e4cf8, heap=heap@entry=0x14cf702e4cf0, tuple=tuple@entry=0x14cf1820a1d0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702e4c6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#50 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e4d00, offsets=offsets@entry=0x14cf702e4cf8, heap=heap@entry=0x14cf702e4cf0, entry=entry@entry=0x14cf1820a1d0, rec=rec@entry=0x14cf702e4ce8, big_rec=0x14cf702e4ce0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#51 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=39, tuple=0x14cf1820a1d0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#52 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79400520, split_rec=0x14cf180557a6 "\200", block=0x14cf77201700, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#53 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e5b00, offsets=offsets@entry=0x14cf702e5af8, heap=heap@entry=0x14cf702e5af0, tuple=tuple@entry=0x14cf182098b0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702e5a6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#54 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e5b00, offsets=offsets@entry=0x14cf702e5af8, heap=heap@entry=0x14cf702e5af0, entry=entry@entry=0x14cf182098b0, rec=rec@entry=0x14cf702e5ae8, big_rec=0x14cf702e5ae0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#55 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=38, tuple=0x14cf182098b0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#56 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79603ed0, split_rec=0x14cf181d6e76 "\200", block=0x14cf79400790, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#57 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e6900, offsets=offsets@entry=0x14cf702e68f8, heap=heap@entry=0x14cf702e68f0, tuple=tuple@entry=0x14cf18208f90, n_ext=0, mtr=0x14cf70307510, err=0x14cf702e686c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#58 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e6900, offsets=offsets@entry=0x14cf702e68f8, heap=heap@entry=0x14cf702e68f0, entry=entry@entry=0x14cf18208f90, rec=rec@entry=0x14cf702e68e8, big_rec=0x14cf702e68e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#59 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=37, tuple=0x14cf18208f90, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#60 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79603fa0, split_rec=0x14cf181c8636 "\200", block=0x14cf79602330, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#61 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e7700, offsets=offsets@entry=0x14cf702e76f8, heap=heap@entry=0x14cf702e76f0, tuple=tuple@entry=0x14cf18208670, n_ext=0, mtr=0x14cf70307510, err=0x14cf702e766c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#62 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e7700, offsets=offsets@entry=0x14cf702e76f8, heap=heap@entry=0x14cf702e76f0, entry=entry@entry=0x14cf18208670, rec=rec@entry=0x14cf702e76e8, big_rec=0x14cf702e76e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#63 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=36, tuple=0x14cf18208670, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#64 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79400860, split_rec=0x14cf180fa4c6 "\200", block=0x14cf79603c60, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#65 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e8500, offsets=offsets@entry=0x14cf702e84f8, heap=heap@entry=0x14cf702e84f0, tuple=tuple@entry=0x14cf18207d50, n_ext=0, mtr=0x14cf70307510, err=0x14cf702e846c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#66 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e8500, offsets=offsets@entry=0x14cf702e84f8, heap=heap@entry=0x14cf702e84f0, entry=entry@entry=0x14cf18207d50, rec=rec@entry=0x14cf702e84e8, big_rec=0x14cf702e84e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#67 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=35, tuple=0x14cf18207d50, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#68 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf794036b0, split_rec=0x14cf181aa686 "\200", block=0x14cf796042e0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#69 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e9300, offsets=offsets@entry=0x14cf702e92f8, heap=heap@entry=0x14cf702e92f0, tuple=tuple@entry=0x14cf18207430, n_ext=0, mtr=0x14cf70307510, err=0x14cf702e926c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#70 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702e9300, offsets=offsets@entry=0x14cf702e92f8, heap=heap@entry=0x14cf702e92f0, entry=entry@entry=0x14cf18207430, rec=rec@entry=0x14cf702e92e8, big_rec=0x14cf702e92e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#71 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=34, tuple=0x14cf18207430, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#72 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79400ad0, split_rec=0x14cf181cc326 "\200", block=0x14cf88086850, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#73 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ea100, offsets=offsets@entry=0x14cf702ea0f8, heap=heap@entry=0x14cf702ea0f0, tuple=tuple@entry=0x14cf18206b10, n_ext=0, mtr=0x14cf70307510, err=0x14cf702ea06c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#74 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ea100, offsets=offsets@entry=0x14cf702ea0f8, heap=heap@entry=0x14cf702ea0f0, entry=entry@entry=0x14cf18206b10, rec=rec@entry=0x14cf702ea0e8, big_rec=0x14cf702ea0e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#75 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=33, tuple=0x14cf18206b10, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#76 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79401080, split_rec=0x14cf18086736 "\200", block=0x14cf793ffdd0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#77 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702eaf00, offsets=offsets@entry=0x14cf702eaef8, heap=heap@entry=0x14cf702eaef0, tuple=tuple@entry=0x14cf18204220, n_ext=0, mtr=0x14cf70307510, err=0x14cf702eae6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#78 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702eaf00, offsets=offsets@entry=0x14cf702eaef8, heap=heap@entry=0x14cf702eaef0, entry=entry@entry=0x14cf18204220, rec=rec@entry=0x14cf702eaee8, big_rec=0x14cf702eaee0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#79 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=32, tuple=0x14cf18204220, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#80 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf794005f0, split_rec=0x14cf180ca696 "\200", block=0x14cf794006c0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#81 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ebd00, offsets=offsets@entry=0x14cf702ebcf8, heap=heap@entry=0x14cf702ebcf0, tuple=tuple@entry=0x14cf18203340, n_ext=0, mtr=0x14cf70307510, err=0x14cf702ebc6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#82 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ebd00, offsets=offsets@entry=0x14cf702ebcf8, heap=heap@entry=0x14cf702ebcf0, entry=entry@entry=0x14cf18203340, rec=rec@entry=0x14cf702ebce8, big_rec=0x14cf702ebce0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#83 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=31, tuple=0x14cf18203340, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#84 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79c03ed0, split_rec=0x14cf180fa326 "\200", block=0x14cf79402e90, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#85 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ecb00, offsets=offsets@entry=0x14cf702ecaf8, heap=heap@entry=0x14cf702ecaf0, tuple=tuple@entry=0x14cf18202a20, n_ext=0, mtr=0x14cf70307510, err=0x14cf702eca6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#86 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ecb00, offsets=offsets@entry=0x14cf702ecaf8, heap=heap@entry=0x14cf702ecaf0, entry=entry@entry=0x14cf18202a20, rec=rec@entry=0x14cf702ecae8, big_rec=0x14cf702ecae0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#87 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=30, tuple=0x14cf18202a20, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#88 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf793ffa90, split_rec=0x14cf18081f56 "\200", block=0x14cf77dff5b0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#89 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ed900, offsets=offsets@entry=0x14cf702ed8f8, heap=heap@entry=0x14cf702ed8f0, tuple=tuple@entry=0x14cf18202100, n_ext=0, mtr=0x14cf70307510, err=0x14cf702ed86c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#90 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ed900, offsets=offsets@entry=0x14cf702ed8f8, heap=heap@entry=0x14cf702ed8f0, entry=entry@entry=0x14cf18202100, rec=rec@entry=0x14cf702ed8e8, big_rec=0x14cf702ed8e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#91 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=29, tuple=0x14cf18202100, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#92 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79403780, split_rec=0x14cf181e0e46 "\200", block=0x14cf79604d70, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#93 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ee700, offsets=offsets@entry=0x14cf702ee6f8, heap=heap@entry=0x14cf702ee6f0, tuple=tuple@entry=0x14cf182017e0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702ee66c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#94 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ee700, offsets=offsets@entry=0x14cf702ee6f8, heap=heap@entry=0x14cf702ee6f0, entry=entry@entry=0x14cf182017e0, rec=rec@entry=0x14cf702ee6e8, big_rec=0x14cf702ee6e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#95 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=28, tuple=0x14cf182017e0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#96 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79400a00, split_rec=0x14cf181aa5f6 "\200", block=0x14cf77dff9c0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#97 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ef500, offsets=offsets@entry=0x14cf702ef4f8, heap=heap@entry=0x14cf702ef4f0, tuple=tuple@entry=0x14cf18200ec0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702ef46c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#98 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ef500, offsets=offsets@entry=0x14cf702ef4f8, heap=heap@entry=0x14cf702ef4f0, entry=entry@entry=0x14cf18200ec0, rec=rec@entry=0x14cf702ef4e8, big_rec=0x14cf702ef4e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#99 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=27, tuple=0x14cf18200ec0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#100 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf789ff000, split_rec=0x14cf18020686 "\200", block=0x14cf765ff820, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#101 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f0300, offsets=offsets@entry=0x14cf702f02f8, heap=heap@entry=0x14cf702f02f0, tuple=tuple@entry=0x14cf182005a0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f026c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#102 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f0300, offsets=offsets@entry=0x14cf702f02f8, heap=heap@entry=0x14cf702f02f0, entry=entry@entry=0x14cf182005a0, rec=rec@entry=0x14cf702f02e8, big_rec=0x14cf702f02e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#103 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=26, tuple=0x14cf182005a0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#104 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79400c70, split_rec=0x14cf1807fa66 "\200", block=0x14cf78003920, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#105 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f1100, offsets=offsets@entry=0x14cf702f10f8, heap=heap@entry=0x14cf702f10f0, tuple=tuple@entry=0x14cf181ffc80, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f106c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#106 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f1100, offsets=offsets@entry=0x14cf702f10f8, heap=heap@entry=0x14cf702f10f0, entry=entry@entry=0x14cf181ffc80, rec=rec@entry=0x14cf702f10e8, big_rec=0x14cf702f10e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#107 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=25, tuple=0x14cf181ffc80, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#108 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79401150, split_rec=0x14cf1801bef6 "\200", block=0x14cf78002dc0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#109 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f1f00, offsets=offsets@entry=0x14cf702f1ef8, heap=heap@entry=0x14cf702f1ef0, tuple=tuple@entry=0x14cf181ff360, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f1e6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#110 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f1f00, offsets=offsets@entry=0x14cf702f1ef8, heap=heap@entry=0x14cf702f1ef0, entry=entry@entry=0x14cf181ff360, rec=rec@entry=0x14cf702f1ee8, big_rec=0x14cf702f1ee0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#111 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=24, tuple=0x14cf181ff360, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#112 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79401220, split_rec=0x14cf180d9fc6 "\200", block=0x14cf78003100, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#113 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f2d00, offsets=offsets@entry=0x14cf702f2cf8, heap=heap@entry=0x14cf702f2cf0, tuple=tuple@entry=0x14cf181fea40, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f2c6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#114 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f2d00, offsets=offsets@entry=0x14cf702f2cf8, heap=heap@entry=0x14cf702f2cf0, entry=entry@entry=0x14cf181fea40, rec=rec@entry=0x14cf702f2ce8, big_rec=0x14cf702f2ce0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#115 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=23, tuple=0x14cf181fea40, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#116 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79401cb0, split_rec=0x14cf1801b9f6 "\200", block=0x14cf78003440, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#117 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f3b00, offsets=offsets@entry=0x14cf702f3af8, heap=heap@entry=0x14cf702f3af0, tuple=tuple@entry=0x14cf181fe120, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f3a6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#118 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f3b00, offsets=offsets@entry=0x14cf702f3af8, heap=heap@entry=0x14cf702f3af0, entry=entry@entry=0x14cf181fe120, rec=rec@entry=0x14cf702f3ae8, big_rec=0x14cf702f3ae0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#119 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=22, tuple=0x14cf181fe120, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#120 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79400d40, split_rec=0x14cf1801ef36 "\200", block=0x14cf780029b0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#121 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f4900, offsets=offsets@entry=0x14cf702f48f8, heap=heap@entry=0x14cf702f48f0, tuple=tuple@entry=0x14cf181fd800, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f486c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#122 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f4900, offsets=offsets@entry=0x14cf702f48f8, heap=heap@entry=0x14cf702f48f0, entry=entry@entry=0x14cf181fd800, rec=rec@entry=0x14cf702f48e8, big_rec=0x14cf702f48e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#123 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=21, tuple=0x14cf181fd800, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#124 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf793ff4e0, split_rec=0x14cf18098e16 "\200", block=0x14cf78003d30, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#125 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f5700, offsets=offsets@entry=0x14cf702f56f8, heap=heap@entry=0x14cf702f56f0, tuple=tuple@entry=0x14cf181faf10, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f566c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#126 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f5700, offsets=offsets@entry=0x14cf702f56f8, heap=heap@entry=0x14cf702f56f0, entry=entry@entry=0x14cf181faf10, rec=rec@entry=0x14cf702f56e8, big_rec=0x14cf702f56e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#127 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=20, tuple=0x14cf181faf10, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#128 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf793ff0d0, split_rec=0x14cf181d2216 "\200", block=0x14cf78003510, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#129 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f6500, offsets=offsets@entry=0x14cf702f64f8, heap=heap@entry=0x14cf702f64f0, tuple=tuple@entry=0x14cf181fa5f0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f646c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#130 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f6500, offsets=offsets@entry=0x14cf702f64f8, heap=heap@entry=0x14cf702f64f0, entry=entry@entry=0x14cf181fa5f0, rec=rec@entry=0x14cf702f64e8, big_rec=0x14cf702f64e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#131 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=19, tuple=0x14cf181fa5f0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#132 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79400fb0, split_rec=0x14cf181a7d96 "\200", block=0x14cf75202e90, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#133 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f7300, offsets=offsets@entry=0x14cf702f72f8, heap=heap@entry=0x14cf702f72f0, tuple=tuple@entry=0x14cf181f9cd0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f726c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#134 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f7300, offsets=offsets@entry=0x14cf702f72f8, heap=heap@entry=0x14cf702f72f0, entry=entry@entry=0x14cf181f9cd0, rec=rec@entry=0x14cf702f72e8, big_rec=0x14cf702f72e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#135 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=18, tuple=0x14cf181f9cd0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#136 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf793ff000, split_rec=0x14cf180fa3f6 "\200", block=0x14cf75202a80, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#137 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f8100, offsets=offsets@entry=0x14cf702f80f8, heap=heap@entry=0x14cf702f80f0, tuple=tuple@entry=0x14cf181f93b0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f806c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#138 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f8100, offsets=offsets@entry=0x14cf702f80f8, heap=heap@entry=0x14cf702f80f0, entry=entry@entry=0x14cf181f93b0, rec=rec@entry=0x14cf702f80e8, big_rec=0x14cf702f80e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#139 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=17, tuple=0x14cf181f93b0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#140 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf793ff340, split_rec=0x14cf181df106 "\200", block=0x14cf780031d0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#141 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f8f00, offsets=offsets@entry=0x14cf702f8ef8, heap=heap@entry=0x14cf702f8ef0, tuple=tuple@entry=0x14cf181f8a90, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f8e6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#142 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f8f00, offsets=offsets@entry=0x14cf702f8ef8, heap=heap@entry=0x14cf702f8ef0, entry=entry@entry=0x14cf181f8a90, rec=rec@entry=0x14cf702f8ee8, big_rec=0x14cf702f8ee0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#143 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=16, tuple=0x14cf181f8a90, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#144 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79603e00, split_rec=0x14cf18123156 "\200", block=0x14cf78004140, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#145 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f9d00, offsets=offsets@entry=0x14cf702f9cf8, heap=heap@entry=0x14cf702f9cf0, tuple=tuple@entry=0x14cf181f8170, n_ext=0, mtr=0x14cf70307510, err=0x14cf702f9c6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#146 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702f9d00, offsets=offsets@entry=0x14cf702f9cf8, heap=heap@entry=0x14cf702f9cf0, entry=entry@entry=0x14cf181f8170, rec=rec@entry=0x14cf702f9ce8, big_rec=0x14cf702f9ce0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#147 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=15, tuple=0x14cf181f8170, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#148 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79605250, split_rec=0x14cf18121416 "\200", block=0x14cf7b8013c0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#149 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fab00, offsets=offsets@entry=0x14cf702faaf8, heap=heap@entry=0x14cf702faaf0, tuple=tuple@entry=0x14cf181f7850, n_ext=0, mtr=0x14cf70307510, err=0x14cf702faa6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#150 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fab00, offsets=offsets@entry=0x14cf702faaf8, heap=heap@entry=0x14cf702faaf0, entry=entry@entry=0x14cf181f7850, rec=rec@entry=0x14cf702faae8, big_rec=0x14cf702faae0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#151 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=14, tuple=0x14cf181f7850, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#152 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf77e00380, split_rec=0x14cf181ab9f6 "\200", block=0x14cf78004890, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#153 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fb900, offsets=offsets@entry=0x14cf702fb8f8, heap=heap@entry=0x14cf702fb8f0, tuple=tuple@entry=0x14cf181f6f30, n_ext=0, mtr=0x14cf70307510, err=0x14cf702fb86c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#154 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fb900, offsets=offsets@entry=0x14cf702fb8f8, heap=heap@entry=0x14cf702fb8f0, entry=entry@entry=0x14cf181f6f30, rec=rec@entry=0x14cf702fb8e8, big_rec=0x14cf702fb8e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#155 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=13, tuple=0x14cf181f6f30, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#156 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf77dff680, split_rec=0x14cf181aa526 "\200", block=0x14cf765ffb60, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#157 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fc700, offsets=offsets@entry=0x14cf702fc6f8, heap=heap@entry=0x14cf702fc6f0, tuple=tuple@entry=0x14cf181f6610, n_ext=0, mtr=0x14cf70307510, err=0x14cf702fc66c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#158 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fc700, offsets=offsets@entry=0x14cf702fc6f8, heap=heap@entry=0x14cf702fc6f0, entry=entry@entry=0x14cf181f6610, rec=rec@entry=0x14cf702fc6e8, big_rec=0x14cf702fc6e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#159 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=12, tuple=0x14cf181f6610, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#160 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf77dfff70, split_rec=0x14cf18099046 "\200", block=0x14cf7a400040, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#161 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fd500, offsets=offsets@entry=0x14cf702fd4f8, heap=heap@entry=0x14cf702fd4f0, tuple=tuple@entry=0x14cf181f5cf0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702fd46c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#162 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fd500, offsets=offsets@entry=0x14cf702fd4f8, heap=heap@entry=0x14cf702fd4f0, entry=entry@entry=0x14cf181f5cf0, rec=rec@entry=0x14cf702fd4e8, big_rec=0x14cf702fd4e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#163 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=11, tuple=0x14cf181f5cf0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#164 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf77e002b0, split_rec=0x14cf181cc2c6 "\200", block=0x14cf7bc03850, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#165 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fe300, offsets=offsets@entry=0x14cf702fe2f8, heap=heap@entry=0x14cf702fe2f0, tuple=tuple@entry=0x14cf181f3400, n_ext=0, mtr=0x14cf70307510, err=0x14cf702fe26c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#166 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fe300, offsets=offsets@entry=0x14cf702fe2f8, heap=heap@entry=0x14cf702fe2f0, entry=entry@entry=0x14cf181f3400, rec=rec@entry=0x14cf702fe2e8, big_rec=0x14cf702fe2e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#167 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=10, tuple=0x14cf181f3400, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#168 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf77e00110, split_rec=0x14cf18096b86 "\200", block=0x14cf75202c20, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#169 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ff100, offsets=offsets@entry=0x14cf702ff0f8, heap=heap@entry=0x14cf702ff0f0, tuple=tuple@entry=0x14cf181f2ae0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702ff06c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#170 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702ff100, offsets=offsets@entry=0x14cf702ff0f8, heap=heap@entry=0x14cf702ff0f0, entry=entry@entry=0x14cf181f2ae0, rec=rec@entry=0x14cf702ff0e8, big_rec=0x14cf702ff0e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#171 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=9, tuple=0x14cf181f2ae0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#172 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf77e00520, split_rec=0x14cf180291f6 "\200", block=0x14cf7bc047c0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#173 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fff00, offsets=offsets@entry=0x14cf702ffef8, heap=heap@entry=0x14cf702ffef0, tuple=tuple@entry=0x14cf181f21c0, n_ext=0, mtr=0x14cf70307510, err=0x14cf702ffe6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#174 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf702fff00, offsets=offsets@entry=0x14cf702ffef8, heap=heap@entry=0x14cf702ffef0, entry=entry@entry=0x14cf181f21c0, rec=rec@entry=0x14cf702ffee8, big_rec=0x14cf702ffee0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#175 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=8, tuple=0x14cf181f21c0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#176 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf765ff8f0, split_rec=0x14cf18097246 "\200", block=0x14cf7bc02dc0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#177 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70300d00, offsets=offsets@entry=0x14cf70300cf8, heap=heap@entry=0x14cf70300cf0, tuple=tuple@entry=0x14cf181f18a0, n_ext=0, mtr=0x14cf70307510, err=0x14cf70300c6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#178 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70300d00, offsets=offsets@entry=0x14cf70300cf8, heap=heap@entry=0x14cf70300cf0, entry=entry@entry=0x14cf181f18a0, rec=rec@entry=0x14cf70300ce8, big_rec=0x14cf70300ce0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#179 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=7, tuple=0x14cf181f18a0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#180 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf77dff4e0, split_rec=0x14cf18179f76 "\200", block=0x14cf765ffc30, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#181 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70301b00, offsets=offsets@entry=0x14cf70301af8, heap=heap@entry=0x14cf70301af0, tuple=tuple@entry=0x14cf181f0f80, n_ext=0, mtr=0x14cf70307510, err=0x14cf70301a6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#182 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70301b00, offsets=offsets@entry=0x14cf70301af8, heap=heap@entry=0x14cf70301af0, entry=entry@entry=0x14cf181f0f80, rec=rec@entry=0x14cf70301ae8, big_rec=0x14cf70301ae0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#183 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=6, tuple=0x14cf181f0f80, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#184 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf77dffa90, split_rec=0x14cf1811fd36 "\200", block=0x14cf75202cf0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#185 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70302900, offsets=offsets@entry=0x14cf703028f8, heap=heap@entry=0x14cf703028f0, tuple=tuple@entry=0x14cf181f0660, n_ext=0, mtr=0x14cf70307510, err=0x14cf7030286c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#186 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70302900, offsets=offsets@entry=0x14cf703028f8, heap=heap@entry=0x14cf703028f0, entry=entry@entry=0x14cf181f0660, rec=rec@entry=0x14cf703028e8, big_rec=0x14cf703028e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#187 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=5, tuple=0x14cf181f0660, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#188 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf77dffd00, split_rec=0x14cf18090566 "\200", block=0x14cf75202dc0, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#189 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70303700, offsets=offsets@entry=0x14cf703036f8, heap=heap@entry=0x14cf703036f0, tuple=tuple@entry=0x14cf181ee4f0, n_ext=0, mtr=0x14cf70307510, err=0x14cf7030366c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#190 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70303700, offsets=offsets@entry=0x14cf703036f8, heap=heap@entry=0x14cf703036f0, entry=entry@entry=0x14cf181ee4f0, rec=rec@entry=0x14cf703036e8, big_rec=0x14cf703036e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#191 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=4, tuple=0x14cf181ee4f0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#192 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79a002b0, split_rec=0x14cf181d8e76 "\200", block=0x14cf78005250, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#193 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70304500, offsets=offsets@entry=0x14cf703044f8, heap=heap@entry=0x14cf703044f0, tuple=tuple@entry=0x14cf181edbd0, n_ext=0, mtr=0x14cf70307510, err=0x14cf7030446c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#194 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70304500, offsets=offsets@entry=0x14cf703044f8, heap=heap@entry=0x14cf703044f0, entry=entry@entry=0x14cf181edbd0, rec=rec@entry=0x14cf703044e8, big_rec=0x14cf703044e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#195 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=3, tuple=0x14cf181edbd0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#196 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf79a00380, split_rec=0x14cf18026066 "\200", block=0x14cf7bc03100, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#197 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70305300, offsets=offsets@entry=0x14cf703052f8, heap=heap@entry=0x14cf703052f0, tuple=tuple@entry=0x14cf181ec6c0, n_ext=0, mtr=0x14cf70307510, err=0x14cf7030526c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#198 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70305300, offsets=offsets@entry=0x14cf703052f8, heap=heap@entry=0x14cf703052f0, entry=entry@entry=0x14cf181ec6c0, rec=rec@entry=0x14cf703052e8, big_rec=0x14cf703052e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#199 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=flags@entry=7, index=index@entry=0x14cf18021fd0, level=level@entry=2, tuple=0x14cf181ec6c0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#200 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf799ffd00, split_rec=0x14cf1802a5d6 "\200", block=0x14cf75202b50, index=0x14cf18021fd0, flags=7) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#201 btr_page_split_and_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70306100, offsets=offsets@entry=0x14cf703060f8, heap=heap@entry=0x14cf703060f0, tuple=tuple@entry=0x14cf181ebda0, n_ext=0, mtr=0x14cf70307510, err=0x14cf7030606c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#202 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=7, cursor=cursor@entry=0x14cf70306100, offsets=offsets@entry=0x14cf703060f8, heap=heap@entry=0x14cf703060f0, entry=entry@entry=0x14cf181ebda0, rec=rec@entry=0x14cf703060e8, big_rec=0x14cf703060e0, n_ext=<optimized out>, thr=0x0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#203 0x000055e8aa6e7c57 in btr_insert_on_non_leaf_level (flags=7, flags@entry=0, index=index@entry=0x14cf18021fd0, level=level@entry=1, tuple=0x14cf181ebda0, mtr=mtr@entry=0x14cf70307510) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2358
|
#204 0x000055e8aa6ebec3 in btr_attach_half_pages (mtr=0x14cf70307510, direction=111, new_block=0x14cf794031d0, split_rec=0x14cf1808d4c6 "\200", block=0x14cf765ffa90, index=0x14cf18021fd0, flags=0) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2466
|
#205 btr_page_split_and_insert (flags=flags@entry=0, cursor=cursor@entry=0x14cf70306fa0, offsets=offsets@entry=0x14cf70306f38, heap=heap@entry=0x14cf70306f28, tuple=tuple@entry=0x14cf1801f098, n_ext=0, mtr=0x14cf70307510, err=0x14cf70306e6c) at /test/10.11_dbg/storage/innobase/btr/btr0btr.cc:2979
|
#206 0x000055e8aa70f68f in btr_cur_pessimistic_insert (flags=flags@entry=0, cursor=cursor@entry=0x14cf70306fa0, offsets=offsets@entry=0x14cf70306f38, heap=heap@entry=0x14cf70306f28, entry=entry@entry=0x14cf1801f098, rec=rec@entry=0x14cf70306f50, big_rec=0x14cf70307040, n_ext=<optimized out>, thr=0x14cf180275e0, mtr=0x14cf70307510) at /test/10.11_dbg/storage/innobase/include/buf0types.h:135
|
#207 0x000055e8aa5fe48d in row_ins_sec_index_entry_low (flags=flags@entry=0, mode=mode@entry=10, index=index@entry=0x14cf18021fd0, offsets_heap=<optimized out>, offsets_heap@entry=0x14cf181e7f80, heap=heap@entry=0x14cf181e27d0, entry=entry@entry=0x14cf1801f098, trx_id=0, thr=0x14cf180275e0) at /test/10.11_dbg/storage/innobase/row/row0ins.cc:3075
|
#208 0x000055e8aa5feda1 in row_ins_sec_index_entry (index=index@entry=0x14cf18021fd0, entry=entry@entry=0x14cf1801f098, thr=thr@entry=0x14cf180275e0, check_foreign=check_foreign@entry=true) at /test/10.11_dbg/storage/innobase/row/row0ins.cc:3265
|
#209 0x000055e8aa60386c in row_ins_index_entry (thr=0x14cf180275e0, entry=0x14cf1801f098, index=0x14cf18021fd0) at /test/10.11_dbg/storage/innobase/row/row0ins.cc:3310
|
#210 row_ins_index_entry_step (thr=0x14cf180275e0, node=<optimized out>) at /test/10.11_dbg/storage/innobase/row/row0ins.cc:3476
|
#211 row_ins (thr=0x14cf180275e0, node=<optimized out>) at /test/10.11_dbg/storage/innobase/row/row0ins.cc:3622
|
#212 row_ins_step (thr=thr@entry=0x14cf180275e0) at /test/10.11_dbg/storage/innobase/row/row0ins.cc:3762
|
#213 0x000055e8aa625dd1 in row_insert_for_mysql (mysql_rec=mysql_rec@entry=0x14cf180261f8 "\375\001", prebuilt=0x14cf18026ed0, ins_mode=ROW_INS_NORMAL) at /test/10.11_dbg/storage/innobase/row/row0mysql.cc:1313
|
#214 0x000055e8aa4b31e1 in ha_innobase::write_row (this=0x14cf18026680, record=0x14cf180261f8 "\375\001") at /test/10.11_dbg/storage/innobase/handler/ha_innodb.cc:7855
|
#215 0x000055e8aa19c4b7 in handler::ha_write_row (this=0x14cf18026680, buf=0x14cf180261f8 "\375\001") at /test/10.11_dbg/sql/handler.cc:7577
|
#216 0x000055e8a9e5b60c in write_record (thd=0x14cf18000db8, table=0x14cf18025c98, info=info@entry=0x14cf18016150, sink=0x0) at /test/10.11_dbg/sql/sql_insert.cc:2191
|
#217 0x000055e8a9e5ba9a in select_insert::send_data (this=0x14cf18016100, values=<optimized out>) at /test/10.11_dbg/sql/sql_insert.cc:4174
|
#218 0x000055e8a9f173dd in select_result_sink::send_data_with_check (sent=<optimized out>, u=<optimized out>, items=@0x14cf180165b8: {<base_list> = {<Sql_alloc> = {<No data fields>}, first = 0x14cf180742b8, last = 0x14cf180742b8, elements = 1}, <No data fields>}, this=<optimized out>) at /test/10.11_dbg/sql/sql_class.h:5679
|
#219 end_send (join=0x14cf180161c0, join_tab=0x14cf18017530, end_of_records=<optimized out>) at /test/10.11_dbg/sql/sql_select.cc:22999
|
#220 0x000055e8a9ee8097 in evaluate_join_record (join=join@entry=0x14cf180161c0, join_tab=0x14cf18017178, error=error@entry=0) at /test/10.11_dbg/sql/sql_select.cc:21993
|
#221 0x000055e8a9f25ec9 in AGGR_OP::end_send (this=this@entry=0x14cf18074190) at /test/10.11_dbg/sql/sql_select.cc:30232
|
#222 0x000055e8a9f261d1 in sub_select_postjoin_aggr (join=0x14cf180161c0, join_tab=0x14cf18017178, end_of_records=<optimized out>) at /test/10.11_dbg/sql/sql_select.cc:21473
|
#223 0x000055e8a9efc5d7 in sub_select (join=join@entry=0x14cf180161c0, join_tab=join_tab@entry=0x14cf18016dc0, end_of_records=end_of_records@entry=true) at /test/10.11_dbg/sql/sql_select.cc:21707
|
#224 0x000055e8a9efca50 in sub_select_cache (join=0x14cf180161c0, join_tab=0x14cf18016dc0, end_of_records=<optimized out>) at /test/10.11_dbg/sql/sql_select.cc:21540
|
#225 0x000055e8a9efc5d7 in sub_select (join=0x14cf180161c0, join_tab=0x14cf18016a08, end_of_records=true) at /test/10.11_dbg/sql/sql_select.cc:21707
|
#226 0x000055e8a9f328c5 in do_select (procedure=<optimized out>, join=0x14cf180161c0) at /test/10.11_dbg/sql/sql_select.cc:21310
|
#227 JOIN::exec_inner (this=this@entry=0x14cf180161c0) at /test/10.11_dbg/sql/sql_select.cc:4812
|
#228 0x000055e8a9f32e28 in JOIN::exec (this=this@entry=0x14cf180161c0) at /test/10.11_dbg/sql/sql_select.cc:4590
|
#229 0x000055e8a9f30bac in mysql_select (thd=thd@entry=0x14cf18000db8, tables=0x14cf18014a18, fields=@0x14cf180146c0: {<base_list> = {<Sql_alloc> = {<No data fields>}, first = 0x14cf180149c0, last = 0x14cf180149c0, elements = 1}, <No data fields>}, conds=0x0, og_num=0, order=0x0, group=0x0, having=0x0, proc_param=0x0, select_options=2202261523200, result=0x14cf18016100, unit=0x14cf18004ff0, select_lex=0x14cf18014420) at /test/10.11_dbg/sql/sql_select.cc:5070
|
#230 0x000055e8a9f313a2 in handle_select (thd=thd@entry=0x14cf18000db8, lex=lex@entry=0x14cf18004f18, result=result@entry=0x14cf18016100, setup_tables_done_option=setup_tables_done_option@entry=1073741824) at /test/10.11_dbg/sql/sql_select.cc:581
|
#231 0x000055e8a9ea99e6 in mysql_execute_command (thd=thd@entry=0x14cf18000db8, is_called_from_prepared_stmt=is_called_from_prepared_stmt@entry=false) at /test/10.11_dbg/sql/sql_parse.cc:4709
|
#232 0x000055e8a9e95882 in mysql_parse (thd=thd@entry=0x14cf18000db8, rawbuf=<optimized out>, length=<optimized out>, parser_state=parser_state@entry=0x14cf70309330) at /test/10.11_dbg/sql/sql_parse.cc:8035
|
#233 0x000055e8a9ea2e6a in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x14cf18000db8, packet=packet@entry=0x14cf1800b6e9 "INSERT INTO t SELECT t.a FROM t t,t t2", packet_length=packet_length@entry=38, blocking=blocking@entry=true) at /test/10.11_dbg/sql/sql_class.h:1339
|
#234 0x000055e8a9ea5574 in do_command (thd=0x14cf18000db8, blocking=blocking@entry=true) at /test/10.11_dbg/sql/sql_parse.cc:1407
|
#235 0x000055e8aa0071da in do_handle_one_connection (connect=<optimized out>, connect@entry=0x55e8ac43ff78, put_in_cache=put_in_cache@entry=true) at /test/10.11_dbg/sql/sql_connect.cc:1418
|
#236 0x000055e8aa0076e3 in handle_one_connection (arg=0x55e8ac43ff78) at /test/10.11_dbg/sql/sql_connect.cc:1312
|
#237 0x000014cf89daa609 in start_thread (arg=<optimized out>) at pthread_create.c:477
|
#238 0x000014cf89996133 in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95
|
Bug confirmed present in:
MariaDB: 10.3.37 (dbg), 10.4.27 (dbg), 10.5.18 (dbg), 10.6.10 (dbg), 10.7.6 (dbg), 10.8.5 (dbg), 10.9.2 (dbg), 10.10.2 (dbg), 10.11.0 (dbg)
MySQL: 5.6.51 (dbg), 5.7.38 (dbg), 8.0.29 (dbg)
Bug (or feature/syntax) confirmed not present in:
MariaDB: 10.3.37 (opt), 10.4.27 (opt), 10.5.18 (opt), 10.6.10 (opt), 10.7.6 (opt), 10.8.5 (opt), 10.9.2 (opt), 10.10.2 (opt), 10.11.0 (opt)
MySQL: 5.5.62 (dbg), 5.5.62 (opt), 5.6.51 (opt), 5.7.38 (opt), 8.0.29 (opt)
|
|
In connection with MDEV-30400 and as expected from my discussion with marko, confirming that bb-10.6-MDEV-29835, at revision b1ff085a6ce03651d13e318ecc0861f002067918, build as debug, still crashes on both the original and the second testcases, in the same way as described (same assert), unlike MDEV-30400, the latter which seems to be resolved by the same branch.
|
|
While working on MDEV-29835 I noticed that
./mtr --mysqld=--loose-innodb-limit-optimistic-insert-debug=2
|
will lead to many failures like this, unless the fault injection in btr_cur_optimistic_insert() is relaxed to treat the value 2 as 3 on non-leaf pages.
|