John Jove
added a comment - I got a simplified test case as follows.
CREATE TABLE t0 (c1 CHAR , c2 NUMERIC UNSIGNED, PRIMARY KEY (c1, c2));
CREATE TABLE t1 (c2 CHARACTER , FOREIGN KEY (c2) REFERENCES t0(c1) MATCH FULL ON UPDATE CASCADE );
INSERT INTO t0 (c1,c2) VALUES ( '' ,0), ( 'h' ,0), ( '' ,21);
CREATE FULLTEXT INDEX i1 ON t1(c2 DESC );
CREATE INDEX i2 ON t1(c2 ASC ) ALGORITHM = COPY;
INSERT INTO t1 (c2) VALUES ( '' );
UPDATE IGNORE t0 SET c1 = 'h' WHERE ( NULL LIKE c1) IS NOT TRUE ; -- Crash
mtr=0x7f7a300a3ea0) at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0upd.cc:252
#12 0x000056368924ead1 in row_upd_clust_rec_by_insert (node=0x7f7a14044598, index=0x7f7a140410f8, thr=0x7f7a1407fc08, referenced=true,
foreign=false, mtr=0x7f7a300a3ea0) at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0upd.cc:2279
#13 0x000056368925005a in row_upd_clust_step (node=0x7f7a14044598, thr=0x7f7a1407fc08)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0upd.cc:2680
#14 0x0000563689250461 in row_upd (node=0x7f7a14044598, thr=0x7f7a1407fc08)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0upd.cc:2756
#15 0x0000563689250a11 in row_upd_step (thr=0x7f7a1407fc08) at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0upd.cc:2898
#16 0x00005636891f9464 in row_update_for_mysql (prebuilt=0x7f7a14043b98)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0mysql.cc:1681
#17 0x000056368904113a in ha_innobase::update_row (this=0x7f7a140432e0, old_row=0x7f7a14042ed0 "\377 \001", new_row=0x7f7a14042ec8 "\377h\001")
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/handler/ha_innodb.cc:8605
#18 0x0000563688c0bcac in handler::ha_update_row (this=0x7f7a140432e0, old_data=0x7f7a14042ed0 "\377 \001", new_data=0x7f7a14042ec8 "\377h\001")
at /home/thiru/mariadb_parent/server/11.3/sql/handler.cc:7924
#19 0x000056368895bdf6 in Sql_cmd_update::update_single_table (this=0x7f7a14015888, thd=0x7f7a140013f8)
at /home/thiru/mariadb_parent/server/11.3/sql/sql_update.cc:996
#20 0x0000563688963425 in Sql_cmd_update::execute_inner (this=0x7f7a14015888, thd=0x7f7a140013f8)
at /home/thiru/mariadb_parent/server/11.3/sql/sql_update.cc:3077
#21 0x00005636888b58f1 in Sql_cmd_dml::execute (this=0x7f7a14015888, thd=0x7f7a140013f8)
at /home/thiru/mariadb_parent/server/11.3/sql/sql_select.cc:33586
#22 0x00005636887f4459 in mysql_execute_command (thd=0x7f7a140013f8, is_called_from_prepared_stmt=false)
at /home/thiru/mariadb_parent/server/11.3/sql/sql_parse.cc:4392
#23 0x00005636887ffbce in mysql_parse (thd=0x7f7a140013f8, rawbuf=0x7f7a14014eb0 "UPDATE IGNORE t1 SET c1 = 'h'", length=29,
parser_state=0x7f7a300a52b0) at /home/thiru/mariadb_parent/server/11.3/sql/sql_parse.cc:7815
#24 0x00005636887ecb16 in dispatch_command (command=COM_QUERY, thd=0x7f7a140013f8, packet=0x7f7a141172d9 "UPDATE IGNORE t1 SET c1 = 'h'",
packet_length=29, blocking=true) at /home/thiru/mariadb_parent/server/11.3/sql/sql_parse.cc:1893
#25 0x00005636887eb4cc in do_command (thd=0x7f7a140013f8, blocking=true) at /home/thiru/mariadb_parent/server/11.3/sql/sql_parse.cc:1406
#26 0x00005636889dd1d0 in do_handle_one_connection (connect=0x56368b733c38, put_in_cache=true)
at /home/thiru/mariadb_parent/server/11.3/sql/sql_connect.cc:1437
#27 0x00005636889dcf31 in handle_one_connection (arg=0x56368b721908) at /home/thiru/mariadb_parent/server/11.3/sql/sql_connect.cc:1339
#28 0x0000563688f54dc7 in pfs_spawn_thread (arg=0x56368b6b0358) at /home/thiru/mariadb_parent/server/11.3/storage/perfschema/pfs.cc:2201
#29 0x00007f7a3e494ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#30 0x00007f7a3e525bf4 in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:100
This problem should exist from lower version (10.4 onwards)
Thirunarayanan Balathandayuthapani
added a comment - Shortest case to repeat the issue:
--source include/have_innodb.inc
CREATE TABLE t1 (c1 CHAR NOT NULL, c2 INT UNSIGNED,
PRIMARY KEY (c1, c2))ENGINE=InnoDB;
CREATE TABLE t2 (c1 INT UNSIGNED, c2 CHAR NOT NULL, INDEX(c2),
FOREIGN KEY (c2) REFERENCES t1(c1) ON UPDATE CASCADE)
ENGINE=InnoDB;
INSERT IGNORE INTO t1 (c1,c2) VALUES
(null, 0), (null, 1), ('h', 0);
ALTER TABLE t2 ADD FULLTEXT(c2);
INSERT IGNORE INTO t2 (c1,c2) VALUES (5617,null);
UPDATE IGNORE t1 SET c1 = 'h';
DROP TABLE t2, t1;
Stack trace for the failing case:
#0 __pthread_kill_implementation (no_tid=0, signo=6,
threadid=140162768725568) at ./nptl/pthread_kill.c:44
#1 __pthread_kill_internal (signo=6, threadid=140162768725568)
at ./nptl/pthread_kill.c:78
#2 __GI___pthread_kill (threadid=140162768725568, signo=signo@entry=6)
at ./nptl/pthread_kill.c:89
#3 0x00007f7a3e442476 in __GI_raise (sig=sig@entry=6)
at ../sysdeps/posix/raise.c:26
#4 0x00007f7a3e4287f3 in __GI_abort () at ./stdlib/abort.c:79
#5 0x00005636892b67cd in ut_dbg_assertion_failed (
expr=0x563689ba490c "result != FTS_INVALID",
file=0x563689ba3bb0 "/home/thiru/mariadb_parent/server/11.3/storage/innobase/fts/fts0fts.cc", line=2185)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/ut/ut0dbg.cc:60
#6 0x00005636893de1d0 in fts_trx_row_get_new_state (
old_state=FTS_DELETE, event=FTS_DELETE)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/fts/fts0fts.cc:2185
#7 0x00005636893de616 in fts_trx_table_add_op (ftt=0x7f7a1407cb48,
doc_id=1, state=FTS_DELETE, fts_indexes=0x0)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/fts/fts0fts.cc:2373
#8 0x00005636893de78f in fts_trx_add_op (trx=0x7f7a3845bb80,
table=0x7f7a14053338, doc_id=1, state=FTS_DELETE, fts_indexes=0x0)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/fts/fts0fts.cc:2420
#9 0x00005636891cda58 in row_ins_foreign_check_on_constraint (
thr=0x7f7a1407fc08, foreign=0x7f7a14139468, pcur=0x7f7a300a30e0,
entry=0x7f7a14078750, mtr=0x7f7a300a3450)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0ins.cc:1310
#10 0x00005636891ced4f in row_ins_check_foreign_constraint (
check_ref=0, foreign=0x7f7a14139468, table=0x7f7a1422ca48,
entry=0x7f7a14078750, thr=0x7f7a1407fc08)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0ins.cc:1743
11 0x0000563689248099 in row_upd_check_references_constraints (
f7a14044598, pcur=0x7f7a140446c0, table=0x7f7a1422ca48, index=0x7f7a140410f8, offsets=0x7f7a300a3950, thr=0x7f7a1407fc08,
mtr=0x7f7a300a3ea0) at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0upd.cc:252
#12 0x000056368924ead1 in row_upd_clust_rec_by_insert (node=0x7f7a14044598, index=0x7f7a140410f8, thr=0x7f7a1407fc08, referenced=true,
foreign=false, mtr=0x7f7a300a3ea0) at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0upd.cc:2279
#13 0x000056368925005a in row_upd_clust_step (node=0x7f7a14044598, thr=0x7f7a1407fc08)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0upd.cc:2680
#14 0x0000563689250461 in row_upd (node=0x7f7a14044598, thr=0x7f7a1407fc08)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0upd.cc:2756
#15 0x0000563689250a11 in row_upd_step (thr=0x7f7a1407fc08) at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0upd.cc:2898
#16 0x00005636891f9464 in row_update_for_mysql (prebuilt=0x7f7a14043b98)
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/row/row0mysql.cc:1681
#17 0x000056368904113a in ha_innobase::update_row (this=0x7f7a140432e0, old_row=0x7f7a14042ed0 "\377 \001", new_row=0x7f7a14042ec8 "\377h\001")
at /home/thiru/mariadb_parent/server/11.3/storage/innobase/handler/ha_innodb.cc:8605
#18 0x0000563688c0bcac in handler::ha_update_row (this=0x7f7a140432e0, old_data=0x7f7a14042ed0 "\377 \001", new_data=0x7f7a14042ec8 "\377h\001")
at /home/thiru/mariadb_parent/server/11.3/sql/handler.cc:7924
#19 0x000056368895bdf6 in Sql_cmd_update::update_single_table (this=0x7f7a14015888, thd=0x7f7a140013f8)
at /home/thiru/mariadb_parent/server/11.3/sql/sql_update.cc:996
#20 0x0000563688963425 in Sql_cmd_update::execute_inner (this=0x7f7a14015888, thd=0x7f7a140013f8)
at /home/thiru/mariadb_parent/server/11.3/sql/sql_update.cc:3077
#21 0x00005636888b58f1 in Sql_cmd_dml::execute (this=0x7f7a14015888, thd=0x7f7a140013f8)
at /home/thiru/mariadb_parent/server/11.3/sql/sql_select.cc:33586
#22 0x00005636887f4459 in mysql_execute_command (thd=0x7f7a140013f8, is_called_from_prepared_stmt=false)
at /home/thiru/mariadb_parent/server/11.3/sql/sql_parse.cc:4392
#23 0x00005636887ffbce in mysql_parse (thd=0x7f7a140013f8, rawbuf=0x7f7a14014eb0 "UPDATE IGNORE t1 SET c1 = 'h'", length=29,
parser_state=0x7f7a300a52b0) at /home/thiru/mariadb_parent/server/11.3/sql/sql_parse.cc:7815
#24 0x00005636887ecb16 in dispatch_command (command=COM_QUERY, thd=0x7f7a140013f8, packet=0x7f7a141172d9 "UPDATE IGNORE t1 SET c1 = 'h'",
packet_length=29, blocking=true) at /home/thiru/mariadb_parent/server/11.3/sql/sql_parse.cc:1893
#25 0x00005636887eb4cc in do_command (thd=0x7f7a140013f8, blocking=true) at /home/thiru/mariadb_parent/server/11.3/sql/sql_parse.cc:1406
#26 0x00005636889dd1d0 in do_handle_one_connection (connect=0x56368b733c38, put_in_cache=true)
at /home/thiru/mariadb_parent/server/11.3/sql/sql_connect.cc:1437
#27 0x00005636889dcf31 in handle_one_connection (arg=0x56368b721908) at /home/thiru/mariadb_parent/server/11.3/sql/sql_connect.cc:1339
#28 0x0000563688f54dc7 in pfs_spawn_thread (arg=0x56368b6b0358) at /home/thiru/mariadb_parent/server/11.3/storage/perfschema/pfs.cc:2201
#29 0x00007f7a3e494ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#30 0x00007f7a3e525bf4 in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:100
This problem should exist from lower version (10.4 onwards)
People
Thirunarayanan Balathandayuthapani
John Jove
Votes:
0Vote for this issue
Watchers:
4Start watching this issue
Dates
Created:
Updated:
Git Integration
Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.
{"report":{"fcp":1183.1000003814697,"ttfb":375.7000002861023,"pageVisibility":"visible","entityId":129101,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"7a6cfcd2-3c0b-4a28-8376-43c58cbdf7d6","navigationType":0,"readyForUser":1284.5,"redirectCount":0,"resourceLoadedEnd":1330.2000002861023,"resourceLoadedStart":381.1000003814697,"resourceTiming":[{"duration":248.59999990463257,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":381.1000003814697,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":381.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":629.7000002861023,"responseStart":0,"secureConnectionStart":0},{"duration":249.2000002861023,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":381.40000009536743,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":381.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":630.6000003814697,"responseStart":0,"secureConnectionStart":0},{"duration":305,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":381.6000003814697,"connectEnd":381.6000003814697,"connectStart":381.6000003814697,"domainLookupEnd":381.6000003814697,"domainLookupStart":381.6000003814697,"fetchStart":381.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":381.6000003814697,"responseEnd":686.6000003814697,"responseStart":686.6000003814697,"secureConnectionStart":381.6000003814697},{"duration":409.69999980926514,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":381.80000019073486,"connectEnd":381.80000019073486,"connectStart":381.80000019073486,"domainLookupEnd":381.80000019073486,"domainLookupStart":381.80000019073486,"fetchStart":381.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":381.80000019073486,"responseEnd":791.5,"responseStart":791.5,"secureConnectionStart":381.80000019073486},{"duration":413.40000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":382,"connectEnd":382,"connectStart":382,"domainLookupEnd":382,"domainLookupStart":382,"fetchStart":382,"redirectEnd":0,"redirectStart":0,"requestStart":382,"responseEnd":795.4000000953674,"responseStart":795.4000000953674,"secureConnectionStart":382},{"duration":413.8999996185303,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":382.1000003814697,"connectEnd":382.1000003814697,"connectStart":382.1000003814697,"domainLookupEnd":382.1000003814697,"domainLookupStart":382.1000003814697,"fetchStart":382.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":382.1000003814697,"responseEnd":796,"responseStart":796,"secureConnectionStart":382.1000003814697},{"duration":414.30000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":382.30000019073486,"connectEnd":382.30000019073486,"connectStart":382.30000019073486,"domainLookupEnd":382.30000019073486,"domainLookupStart":382.30000019073486,"fetchStart":382.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":382.30000019073486,"responseEnd":796.6000003814697,"responseStart":796.6000003814697,"secureConnectionStart":382.30000019073486},{"duration":452.2999997138977,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":382.6000003814697,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":382.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":834.9000000953674,"responseStart":0,"secureConnectionStart":0},{"duration":414.90000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":382.80000019073486,"connectEnd":382.80000019073486,"connectStart":382.80000019073486,"domainLookupEnd":382.80000019073486,"domainLookupStart":382.80000019073486,"fetchStart":382.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":382.80000019073486,"responseEnd":797.7000002861023,"responseStart":797.7000002861023,"secureConnectionStart":382.80000019073486},{"duration":419.40000009536743,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":415.7000002861023,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":415.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":835.1000003814697,"responseStart":0,"secureConnectionStart":0},{"duration":382.19999980926514,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":416.2000002861023,"connectEnd":416.2000002861023,"connectStart":416.2000002861023,"domainLookupEnd":416.2000002861023,"domainLookupStart":416.2000002861023,"fetchStart":416.2000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":416.2000002861023,"responseEnd":798.4000000953674,"responseStart":798.4000000953674,"secureConnectionStart":416.2000002861023},{"duration":819.8000001907349,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":431.80000019073486,"connectEnd":431.80000019073486,"connectStart":431.80000019073486,"domainLookupEnd":431.80000019073486,"domainLookupStart":431.80000019073486,"fetchStart":431.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":431.80000019073486,"responseEnd":1251.6000003814697,"responseStart":1251.6000003814697,"secureConnectionStart":431.80000019073486},{"duration":831.4000000953674,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":431.90000009536743,"connectEnd":431.90000009536743,"connectStart":431.90000009536743,"domainLookupEnd":431.90000009536743,"domainLookupStart":431.90000009536743,"fetchStart":431.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":431.90000009536743,"responseEnd":1263.3000001907349,"responseStart":1263.3000001907349,"secureConnectionStart":431.90000009536743},{"duration":171.2000002861023,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":846.5,"connectEnd":846.5,"connectStart":846.5,"domainLookupEnd":846.5,"domainLookupStart":846.5,"fetchStart":846.5,"redirectEnd":0,"redirectStart":0,"requestStart":846.5,"responseEnd":1017.7000002861023,"responseStart":1017.7000002861023,"secureConnectionStart":846.5},{"duration":211.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/e65b778d185daf5aee24936755b43da6/_/download/contextbatch/js/browser-metrics-plugin.contrib,-_super,-project.issue.navigator,-jira.view.issue,-atl.general/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":1118.7000002861023,"connectEnd":1118.7000002861023,"connectStart":1118.7000002861023,"domainLookupEnd":1118.7000002861023,"domainLookupStart":1118.7000002861023,"fetchStart":1118.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":1118.7000002861023,"responseEnd":1330.2000002861023,"responseStart":1330.1000003814697,"secureConnectionStart":1118.7000002861023},{"duration":203,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1176.7000002861023,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1176.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1379.7000002861023,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":196,"responseStart":376,"responseEnd":385,"domLoading":379,"domInteractive":1430,"domContentLoadedEventStart":1430,"domContentLoadedEventEnd":1486,"domComplete":1694,"loadEventStart":1694,"loadEventEnd":1695,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1388.1000003814697},{"name":"bigPipe.sidebar-id.end","time":1388.9000000953674},{"name":"bigPipe.activity-panel-pipe-id.start","time":1389.1000003814697},{"name":"bigPipe.activity-panel-pipe-id.end","time":1393.5},{"name":"activityTabFullyLoaded","time":1505.3000001907349}],"measures":[],"correlationId":"7e5d1d48d6c0a9","effectiveType":"4g","downlink":9.1,"rtt":0,"serverDuration":109,"dbReadsTimeInMs":13,"dbConnsTimeInMs":23,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
I got a simplified test case as follows.