Type:
Bug
Priority:
Major
Resolution:
Fixed
Affects Version/s:
None
Component/s:
None
#1 0x0000000000f24e60 in my_write_core (sig=11) at /home/elenst/bzr/10.0/mysys/stacktrace.c:457
#2 0x0000000000830f22 in handle_fatal_signal (sig=11) at /home/elenst/bzr/10.0/sql/signal_handler.cc:262
#3 <signal handler called>
#4 0x0000000000794109 in Explain_query::print_explain (this=0x0, output=0x7fc02fc5c8a0, explain_flags=3 '\003') at /home/elenst/bzr/10.0/sql/sql_explain.cc:159
#5 0x0000000000646b7a in execute_sqlcom_select (thd=0x7fc042ba7008, all_tables=0x7fc02fc5da20) at /home/elenst/bzr/10.0/sql/sql_parse.cc:5144
#6 0x000000000063f039 in mysql_execute_command (thd=0x7fc042ba7008) at /home/elenst/bzr/10.0/sql/sql_parse.cc:2534
#7 0x00000000006495cc in mysql_parse (thd=0x7fc042ba7008, rawbuf=0x7fc02fc8d2a0 "EXPLAIN EXTENDED SELECT alias2 . `col_time_key` AS field1 FROM ( BB AS alias1 LEFT OUTER JOIN CC AS alias2 ON (alias2 . `col_varchar_key` = alias1 . `col_varchar_nokey` ) ) WHERE ( NOT EXISTS ("..., length=687, parser_state=0x7fc05f4e74b0) at /home/elenst/bzr/10.0/sql/sql_parse.cc:6312
#8 0x000000000063c1fb in dispatch_command (command=COM_QUERY, thd=0x7fc042ba7008, packet=0x7fc042bad009 "", packet_length=687) at /home/elenst/bzr/10.0/sql/sql_parse.cc:1281
#9 0x000000000063b5fe in do_command (thd=0x7fc042ba7008) at /home/elenst/bzr/10.0/sql/sql_parse.cc:986
#10 0x000000000075ee27 in do_handle_one_connection (thd_arg=0x7fc042ba7008) at /home/elenst/bzr/10.0/sql/sql_connect.cc:1379
#11 0x000000000075eb7a in handle_one_connection (arg=0x7fc042ba7008) at /home/elenst/bzr/10.0/sql/sql_connect.cc:1293
#12 0x0000000000e71841 in pfs_spawn_thread (arg=0x7fc042aaa348) at /home/elenst/bzr/10.0/storage/perfschema/pfs.cc:1853
#13 0x00007fc05e6cbe9a in start_thread (arg=0x7fc05f4e8700) at pthread_create.c:308
#14 0x00007fc05dbe6cbd in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:112
bzr version-info
revision-id: bar@mnogosearch.org-20131016162020-24fjhl2n2a4wn6c2
date: 2013-10-16 20:20:20 +0400
build-date: 2013-10-17 15:11:46 +0300
revno: 3854
branch-nick: 10.0
No reproducible test case yet, it's a race condition. Here is the table structures, the data and EXPLAIN output (if it doesn't get killed):
CREATE TABLE C (
pk INTEGER AUTO_INCREMENT,
col_int_nokey INTEGER /*! NULL */ ,
col_int_key INTEGER /*! NULL */ ,
col_date_key DATE /*! NULL */ ,
col_date_nokey DATE /*! NULL */ ,
col_time_key TIME /*! NULL */ ,
col_time_nokey TIME /*! NULL */ ,
col_datetime_key DATETIME /*! NULL */ ,
col_datetime_nokey DATETIME /*! NULL */ ,
col_varchar_key VARCHAR (1) /*! NULL */ ,
col_varchar_nokey VARCHAR (1) /*! NULL */ ,
PRIMARY KEY (pk),
KEY (col_int_key),
KEY (col_date_key),
KEY (col_time_key),
KEY (col_datetime_key),
KEY (col_varchar_key, col_int_key)
) ENGINE=MyISAM;
INSERT /*! IGNORE */ INTO C (
col_int_key, col_int_nokey,
col_date_key, col_date_nokey,
col_time_key, col_time_nokey,
col_datetime_key, col_datetime_nokey,
col_varchar_key, col_varchar_nokey
) VALUES (4, 2, '2008-12-05' , '2008-12-05' , '22:34:09.023306' , '22:34:09.023306' , '1900-01-01 00:00:00' , '1900-01-01 00:00:00' , 'v' , 'v' ),(62, 150, '2005-03-27' , '2005-03-27' , '14:26:02.007788' , '14:26:02.007788' , '2008-01-03 10:33:32.027981' , '2008-01-03 10:33:32.027981' , 'v' , 'v' ),(7, NULL , '2004-04-09' , '2004-04-09' , '14:03:03.042673' , '14:03:03.042673' , '2001-11-28 00:50:27.051028' , '2001-11-28 00:50:27.051028' , 'c' , 'c' ),(1, 2, '2006-05-13' , '2006-05-13' , '01:46:09.016386' , '01:46:09.016386' , '2007-10-09 19:53:04.008332' , '2007-10-09 19:53:04.008332' , NULL , NULL ),(0, 5, '2001-05-06' , '2001-05-06' , '16:21:18.052408' , '16:21:18.052408' , '2001-11-08 21:02:12.009395' , '2001-11-08 21:02:12.009395' , 'x' , 'x' ),(7, 3, '2006-03-03' , '2006-03-03' , '18:56:33.027423' , '18:56:33.027423' , '2003-04-01 00:00:00' , '2003-04-01 00:00:00' , 'i' , 'i' ),(7, 1, '2007-12-28' , '2007-12-28' , NULL , NULL , '1900-01-01 00:00:00' , '1900-01-01 00:00:00' , 'e' , 'e' ),(1, 4, '2004-10-20' , '2004-10-20' , '09:29:08.048031' , '09:29:08.048031' , '2007-07-12 00:00:00' , '2007-07-12 00:00:00' , 'p' , 'p' ),(7, NULL , '2008-04-09' , '2008-04-09' , '19:11:10.040728' , '19:11:10.040728' , '2005-04-04 01:21:01.040391' , '2005-04-04 01:21:01.040391' , 's' , 's' ),(1, 2, '2005-12-25' , '2005-12-25' , '11:57:26.013363' , '11:57:26.013363' , '1900-01-01 00:00:00' , '1900-01-01 00:00:00' , 'j' , 'j' ),(5, 6, '1900-01-01' , '1900-01-01' , '00:39:46.041355' , '00:39:46.041355' , '2003-03-05 03:41:18.061978' , '2003-03-05 03:41:18.061978' , 'z' , 'z' ),(2, 6, NULL , NULL , '03:28:15.007081' , '03:28:15.007081' , '2008-08-03 11:33:04.049998' , '2008-08-03 11:33:04.049998' , 'c' , 'c' ),(0, 8, '1900-01-01' , '1900-01-01' , '06:44:18.007092' , '06:44:18.007092' , '2004-04-28 21:44:45.050791' , '2004-04-28 21:44:45.050791' , 'a' , 'a' ),(1, 2, '2001-01-16' , '2001-01-16' , '14:36:39.062494' , '14:36:39.062494' , '2001-04-06 00:00:00' , '2001-04-06 00:00:00' , 'q' , 'q' ),(8, 6, '1900-01-01' , '1900-01-01' , '18:42:45.053707' , '18:42:45.053707' , '2001-04-18 00:00:00' , '2001-04-18 00:00:00' , 'y' , 'y' ),(1, 8, '2001-11-23' , '2001-11-23' , '02:57:29.012755' , '02:57:29.012755' , '2008-12-18 19:39:55.005399' , '2008-12-18 19:39:55.005399' , NULL , NULL ),(1, 3, '2004-11-04' , '2004-11-04' , '16:46:13.015460' , '16:46:13.015460' , '2000-08-01 12:19:39.028493' , '2000-08-01 12:19:39.028493' , 'r' , 'r' ),(9, 3, '2003-03-12' , '2003-03-12' , '19:39:02.040624' , '19:39:02.040624' , '2004-09-25 21:29:06.004058' , '2004-09-25 21:29:06.004058' , 'v' , 'v' ),(1, 9, '2002-06-22' , '2002-06-22' , NULL , NULL , '2009-09-20 09:11:48.065041' , '2009-09-20 09:11:48.065041' , NULL , NULL ),(5, 6, '2004-10-10' , '2004-10-10' , '20:58:33.049572' , '20:58:33.049572' , '2004-03-27 09:32:04.056959' , '2004-03-27 09:32:04.056959' , 'r' , 'r' );
CREATE TABLE BB (
pk INTEGER AUTO_INCREMENT,
col_int_nokey INTEGER /*! NULL */ ,
col_int_key INTEGER /*! NULL */ ,
col_date_key DATE /*! NULL */ ,
col_date_nokey DATE /*! NULL */ ,
col_time_key TIME /*! NULL */ ,
col_time_nokey TIME /*! NULL */ ,
col_datetime_key DATETIME /*! NULL */ ,
col_datetime_nokey DATETIME /*! NULL */ ,
col_varchar_key VARCHAR (1) /*! NULL */ ,
col_varchar_nokey VARCHAR (1) /*! NULL */ ,
PRIMARY KEY (pk),
KEY (col_int_key),
KEY (col_date_key),
KEY (col_time_key),
KEY (col_datetime_key),
KEY (col_varchar_key, col_int_key)
) AUTO_INCREMENT=10 ENGINE=MyISAM;
INSERT /*! IGNORE */ INTO BB (
col_int_key, col_int_nokey,
col_date_key, col_date_nokey,
col_time_key, col_time_nokey,
col_datetime_key, col_datetime_nokey,
col_varchar_key, col_varchar_nokey
) VALUES (8, 7, '2008-10-02' , '2008-10-02' , '04:07:22.028954' , '04:07:22.028954' , '2001-10-08 00:00:00' , '2001-10-08 00:00:00' , 'g' , 'g' );
CREATE TABLE CC (
pk INTEGER AUTO_INCREMENT,
col_int_nokey INTEGER /*! NULL */ ,
col_int_key INTEGER /*! NULL */ ,
col_date_key DATE /*! NULL */ ,
col_date_nokey DATE /*! NULL */ ,
col_time_key TIME /*! NULL */ ,
col_time_nokey TIME /*! NULL */ ,
col_datetime_key DATETIME /*! NULL */ ,
col_datetime_nokey DATETIME /*! NULL */ ,
col_varchar_key VARCHAR (1) /*! NULL */ ,
col_varchar_nokey VARCHAR (1) /*! NULL */ ,
PRIMARY KEY (pk),
KEY (col_int_key),
KEY (col_date_key),
KEY (col_time_key),
KEY (col_datetime_key),
KEY (col_varchar_key, col_int_key)
) AUTO_INCREMENT=10 ENGINE=MyISAM;
INSERT /*! IGNORE */ INTO CC (
col_int_key, col_int_nokey,
col_date_key, col_date_nokey,
col_time_key, col_time_nokey,
col_datetime_key, col_datetime_nokey,
col_varchar_key, col_varchar_nokey
) VALUES (8, NULL , '2000-12-03' , '2000-12-03' , '22:55:23.019225' , '22:55:23.019225' , '2005-07-20 00:00:00' , '2005-07-20 00:00:00' , 'x' , 'x' ),(7, 8, '2008-05-03' , '2008-05-03' , '10:19:31.050677' , '10:19:31.050677' , '2007-10-06 17:56:40.056051' , '2007-10-06 17:56:40.056051' , 'd' , 'd' ),(1, 1, '2005-12-06' , '2005-12-06' , '14:40:36.038608' , '14:40:36.038608' , NULL , NULL , 'r' , 'r' ),(7, 9, '2000-04-10' , '2000-04-10' , '04:37:47.062416' , '04:37:47.062416' , '2007-12-23 05:17:49.029955' , '2007-12-23 05:17:49.029955' , 'f' , 'f' ),(9, 4, '2002-11-05' , '2002-11-05' , '19:34:06.054514' , '19:34:06.054514' , NULL , NULL , 'y' , 'y' ),( NULL , 3, '2000-09-06' , '2000-09-06' , '20:35:33.022996' , '20:35:33.022996' , '2000-08-16 00:00:00' , '2000-08-16 00:00:00' , 'u' , 'u' ),(1, 2, NULL , NULL , NULL , NULL , NULL , NULL , 'm' , 'm' ),(9, NULL , '2007-06-14' , '2007-06-14' , '14:43:37.057393' , '14:43:37.057393' , '2003-02-07 09:50:39.001189' , '2003-02-07 09:50:39.001189' , NULL , NULL ),(2, 2, '2007-11-17' , '2007-11-17' , '02:23:09.043438' , '02:23:09.043438' , '2003-08-04 23:00:25.012582' , '2003-08-04 23:00:25.012582' , 'o' , 'o' ),(9, NULL , '2009-02-23' , '2009-02-23' , '01:22:45.041064' , '01:22:45.041064' , '2009-08-07 12:57:18.026416' , '2009-08-07 12:57:18.026416' , 'w' , 'w' ),(2, 6, '2007-01-08' , '2007-01-08' , '00:00:00' , '00:00:00' , '1900-01-01 00:00:00' , '1900-01-01 00:00:00' , 'm' , 'm' ),(4, 7, '2008-06-10' , '2008-06-10' , '00:13:25.038482' , '00:13:25.038482' , '2001-06-17 01:34:03.065074' , '2001-06-17 01:34:03.065074' , 'q' , 'q' ),(0, 2, '2002-10-20' , '2002-10-20' , '03:47:16.042671' , '03:47:16.042671' , NULL , NULL , NULL , NULL ),(4, 5, '2008-09-12' , '2008-09-12' , '01:41:48.007423' , '01:41:48.007423' , '1900-01-01 00:00:00' , '1900-01-01 00:00:00' , 'd' , 'd' ),(8, 7, '2006-06-16' , '2006-06-16' , '00:00:00' , '00:00:00' , NULL , NULL , 'g' , 'g' ),( NULL , 6, '2004-09-18' , '2004-09-18' , '22:32:04.047407' , '22:32:04.047407' , '2007-08-22 14:10:22.054447' , '2007-08-22 14:10:22.054447' , 'x' , 'x' ),( NULL , 6, '1900-01-01' , '1900-01-01' , '16:44:14.028443' , '16:44:14.028443' , '2005-01-07 12:15:05.055865' , '2005-01-07 12:15:05.055865' , 'f' , 'f' ),(0, 2, '2005-09-13' , '2005-09-13' , '17:38:37.059754' , '17:38:37.059754' , '2008-07-18 00:00:00' , '2008-07-18 00:00:00' , 'p' , 'p' ),( NULL , 9, '2007-04-09' , '2007-04-09' , '08:46:48.042388' , '08:46:48.042388' , '2005-03-24 07:33:11.043368' , '2005-03-24 07:33:11.043368' , 'j' , 'j' ),(8, 6, '2000-09-20' , '2000-09-20' , '14:11:27.044095' , '14:11:27.044095' , '2003-06-13 23:19:49.018300' , '2003-06-13 23:19:49.018300' , 'c' , 'c' );
EXPLAIN EXTENDED SELECT alias2 . `col_time_key` AS field1 FROM ( BB AS alias1 LEFT OUTER JOIN CC AS alias2 ON (alias2 . `col_varchar_key` = alias1 . `col_varchar_nokey` ) ) WHERE ( NOT EXISTS ( SELECT SQ1_alias1 . `col_varchar_nokey` AS SQ1_field1 FROM ( C AS SQ1_alias1 INNER JOIN CC AS SQ1_alias2 ON (SQ1_alias2 . `col_varchar_nokey` = SQ1_alias1 . `col_varchar_key` ) ) WHERE SQ1_alias2 . `col_varchar_key` = alias2 . `col_varchar_nokey` AND SQ1_alias2 . `col_varchar_nokey` >= alias1 . `col_varchar_key` ) ) AND alias1 . `col_varchar_nokey` IS NULL GROUP BY field1 HAVING (field1 <= 'm' AND field1 <= 9) ORDER BY alias1 . `col_datetime_key` DESC , field1 LIMIT 2 OFFSET 5;
id select_type table type possible_keys key key_len ref rows filtered Extra
1 PRIMARY NULL NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables
2 DEPENDENT SUBQUERY SQ1_alias2 ref col_varchar_key col_varchar_key 4 test.alias2.col_varchar_nokey 3 100.00 Using where
2 DEPENDENT SUBQUERY SQ1_alias1 ref col_varchar_key col_varchar_key 4 test.SQ1_alias2.col_varchar_nokey 3 100.00
Warnings:
Note 1276 Field or reference 'test.alias2.col_varchar_nokey' of SELECT #2 was resolved in SELECT #1
Note 1276 Field or reference 'test.alias1.col_varchar_key' of SELECT #2 was resolved in SELECT #1
Note 1003 select `test`.`alias2`.`col_time_key` AS `field1` from `test`.`CC` `alias2` where ((not(exists(select `test`.`SQ1_alias1`.`col_varchar_nokey` AS `SQ1_field1` from `test`.`C` `SQ1_alias1` join `test`.`CC` `SQ1_alias2` where ((`test`.`SQ1_alias1`.`col_varchar_key` = `test`.`SQ1_alias2`.`col_varchar_nokey`) and (`test`.`SQ1_alias2`.`col_varchar_key` = `test`.`alias2`.`col_varchar_nokey`) and (`test`.`SQ1_alias2`.`col_varchar_nokey` >= 'g'))))) and 0) group by `test`.`alias2`.`col_time_key` having ((`field1` <= 'm') and (`field1` <= 9)) order by '2001-10-08 00:00:00' desc,`test`.`alias2`.`col_time_key` limit 5,2
Elena Stepanova
made changes -
2013-10-17 15:20
Field
Original Value
New Value
Summary
Server crashes on killing EXPLAIN EXTENDED
Server crashes in print_explain on killing EXPLAIN EXTENDED
Sergei Petrunia
made changes -
2013-10-17 15:48
Status
Open
[ 1
]
In Progress
[ 3
]
Sergei Petrunia
made changes -
2013-10-18 16:51
Resolution
Fixed
[ 1
]
Status
In Progress
[ 3
]
Closed
[ 6
]
Sergei Golubchik
made changes -
2014-06-13 15:06
Workflow
defaullt
[ 29316
]
MariaDB v2
[ 44562
]
Sergei Golubchik
made changes -
2021-12-06 21:39
Workflow
MariaDB v3
[ 63916
]
MariaDB v4
[ 147137
]
{"report":{"fcp":811.6999998092651,"ttfb":261.8999996185303,"pageVisibility":"visible","entityId":26016,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"1414633e-3384-4d70-a581-75c2176ef26d","navigationType":0,"readyForUser":1003.3000001907349,"redirectCount":0,"resourceLoadedEnd":1004.3999996185303,"resourceLoadedStart":282.5,"resourceTiming":[{"duration":9.399999618530273,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":282.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":282.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":291.8999996185303,"responseStart":0,"secureConnectionStart":0},{"duration":9.899999618530273,"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":282.80000019073486,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":282.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":292.69999980926514,"responseStart":0,"secureConnectionStart":0},{"duration":68.30000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":283,"connectEnd":283,"connectStart":283,"domainLookupEnd":283,"domainLookupStart":283,"fetchStart":283,"redirectEnd":0,"redirectStart":0,"requestStart":283,"responseEnd":351.30000019073486,"responseStart":351.30000019073486,"secureConnectionStart":283},{"duration":106.30000019073486,"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":283.19999980926514,"connectEnd":283.19999980926514,"connectStart":283.19999980926514,"domainLookupEnd":283.19999980926514,"domainLookupStart":283.19999980926514,"fetchStart":283.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":283.19999980926514,"responseEnd":389.5,"responseStart":389.5,"secureConnectionStart":283.19999980926514},{"duration":110,"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":283.5,"connectEnd":283.5,"connectStart":283.5,"domainLookupEnd":283.5,"domainLookupStart":283.5,"fetchStart":283.5,"redirectEnd":0,"redirectStart":0,"requestStart":283.5,"responseEnd":393.5,"responseStart":393.5,"secureConnectionStart":283.5},{"duration":110.30000019073486,"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":283.69999980926514,"connectEnd":283.69999980926514,"connectStart":283.69999980926514,"domainLookupEnd":283.69999980926514,"domainLookupStart":283.69999980926514,"fetchStart":283.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":283.69999980926514,"responseEnd":394,"responseStart":394,"secureConnectionStart":283.69999980926514},{"duration":110.5,"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":283.8999996185303,"connectEnd":283.8999996185303,"connectStart":283.8999996185303,"domainLookupEnd":283.8999996185303,"domainLookupStart":283.8999996185303,"fetchStart":283.8999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":283.8999996185303,"responseEnd":394.3999996185303,"responseStart":394.3999996185303,"secureConnectionStart":283.8999996185303},{"duration":212.20000076293945,"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":284.0999994277954,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":284.0999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":496.30000019073486,"responseStart":0,"secureConnectionStart":0},{"duration":110.69999980926514,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":284.19999980926514,"connectEnd":284.19999980926514,"connectStart":284.19999980926514,"domainLookupEnd":284.19999980926514,"domainLookupStart":284.19999980926514,"fetchStart":284.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":284.19999980926514,"responseEnd":394.8999996185303,"responseStart":394.8999996185303,"secureConnectionStart":284.19999980926514},{"duration":212,"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":284.30000019073486,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":284.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":496.30000019073486,"responseStart":0,"secureConnectionStart":0},{"duration":111,"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":284.5,"connectEnd":284.5,"connectStart":284.5,"domainLookupEnd":284.5,"domainLookupStart":284.5,"fetchStart":284.5,"redirectEnd":0,"redirectStart":0,"requestStart":284.5,"responseEnd":395.5,"responseStart":395.5,"secureConnectionStart":284.5},{"duration":219.5,"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":285.30000019073486,"connectEnd":285.30000019073486,"connectStart":285.30000019073486,"domainLookupEnd":285.30000019073486,"domainLookupStart":285.30000019073486,"fetchStart":285.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":285.30000019073486,"responseEnd":504.80000019073486,"responseStart":504.80000019073486,"secureConnectionStart":285.30000019073486},{"duration":263.4000005722046,"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":285.3999996185303,"connectEnd":285.3999996185303,"connectStart":285.3999996185303,"domainLookupEnd":285.3999996185303,"domainLookupStart":285.3999996185303,"fetchStart":285.3999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":285.3999996185303,"responseEnd":548.8000001907349,"responseStart":548.8000001907349,"secureConnectionStart":285.3999996185303},{"duration":24.5,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":524.6999998092651,"connectEnd":524.6999998092651,"connectStart":524.6999998092651,"domainLookupEnd":524.6999998092651,"domainLookupStart":524.6999998092651,"fetchStart":524.6999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":524.6999998092651,"responseEnd":549.1999998092651,"responseStart":549.1999998092651,"secureConnectionStart":524.6999998092651},{"duration":215.19999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/css/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":552.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":552.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":767.6999998092651,"responseStart":0,"secureConnectionStart":0},{"duration":441.19999980926514,"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":553.3999996185303,"connectEnd":553.3999996185303,"connectStart":553.3999996185303,"domainLookupEnd":553.3999996185303,"domainLookupStart":553.3999996185303,"fetchStart":553.3999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":553.3999996185303,"responseEnd":994.5999994277954,"responseStart":994.5999994277954,"secureConnectionStart":553.3999996185303},{"duration":450.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/097ae97cb8fbec7d6ea4bbb1f26955b9-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/js/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":553.8999996185303,"connectEnd":553.8999996185303,"connectStart":553.8999996185303,"domainLookupEnd":553.8999996185303,"domainLookupStart":553.8999996185303,"fetchStart":553.8999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":553.8999996185303,"responseEnd":1004.3999996185303,"responseStart":1004.3999996185303,"secureConnectionStart":553.8999996185303},{"duration":362.19999980926514,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":804.8999996185303,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":804.8999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1167.0999994277954,"responseStart":0,"secureConnectionStart":0},{"duration":317.1000003814697,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":812.3999996185303,"connectEnd":812.3999996185303,"connectStart":812.3999996185303,"domainLookupEnd":812.3999996185303,"domainLookupStart":812.3999996185303,"fetchStart":812.3999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":812.3999996185303,"responseEnd":1129.5,"responseStart":1129.5,"secureConnectionStart":812.3999996185303}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":24,"responseStart":262,"responseEnd":272,"domLoading":276,"domInteractive":1107,"domContentLoadedEventStart":1107,"domContentLoadedEventEnd":1165,"domComplete":1382,"loadEventStart":1382,"loadEventEnd":1383,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1068.5},{"name":"bigPipe.sidebar-id.end","time":1069.3999996185303},{"name":"bigPipe.activity-panel-pipe-id.start","time":1069.5999994277954},{"name":"bigPipe.activity-panel-pipe-id.end","time":1071.8000001907349},{"name":"activityTabFullyLoaded","time":1187.0999994277954}],"measures":[],"correlationId":"1f97bf39916cdc","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":144,"dbReadsTimeInMs":20,"dbConnsTimeInMs":31,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}