Type:
Bug
Priority:
Major
Resolution:
Unresolved
Affects Version/s:
10.11
Environment:
clang-20.1, UBSAN
highlighted by the existing test case from MDEV-18722
create table t1 (t time, unique(t)) engine=innodb;
insert into t1 values (null),(null);
alter ignore table t1 modify t text not null default '';
Thread 13 "one_connection" hit Breakpoint 2, 0x000055555935c880 in __ubsan::ScopedReport::~ScopedReport() ()
(gdb) bt
#0 0x000055555935c880 in __ubsan::ScopedReport::~ScopedReport() ()
#1 0x00005555593614cb in handlePointerOverflowImpl(__ubsan::PointerOverflowData*, unsigned long, unsigned long, __ubsan::ReportOptions) ()
#2 0x0000555559361044 in __ubsan_handle_pointer_overflow ()
#3 0x000055555d8c7c4d in my_uca_scanner_next_utf8mb4 (scanner=0x7bffdcfa9e70, param=0x7bffdcfa9ec0) at /source/strings/ctype-uca-scanner_next.inl:84
#4 0x000055555d8cb785 in my_uca_strnncollsp_onelevel_utf8mb4 (cs=0x7e0ff61f9cb0, level=0x5555628892d0 <my_uca1400_info_tailored+8944>, s=0x7e8ff6370280 '\276' <repeats 200 times>...,
slen=0, t=0x0, tlen=0) at /source/strings/ctype-uca.inl:235
#5 0x000055555d88276a in my_uca_strnncollsp_utf8mb4 (cs=0x7e0ff61f9cb0, s=0x7e8ff6370280 '\276' <repeats 200 times>..., slen=0, t=0x0, tlen=0) at /source/strings/ctype-uca.inl:280
#6 0x000055555b0de008 in charset_info_st::strnncollsp (this=0x7e0ff61f9cb0, a=0x7e8ff6370280 '\276' <repeats 200 times>..., alen=0, b=0x0, blen=0) at /source/include/m_ctype.h:1102
#7 0x000055555b0a24f0 in Field_blob::cmp (this=0x7e4ff63c5b18, a=0x7e8ff6370280 '\276' <repeats 200 times>..., a_length=0, b=0x0, b_length=0) at /source/sql/field.cc:9019
#8 0x000055555b0a291e in Field_blob::cmp (this=0x7e4ff63c5b18, a_ptr=0x7e4ff63c5a20 "", b_ptr=0x7e4ff63c69b8 "") at /source/sql/field.cc:9029
#9 0x000055555a51dd6d in Field::cmp_offset (this=0x7e4ff63c5b18, row_offset=3992) at /source/sql/field.h:1355
#10 0x000055555b1d1eea in handler::check_duplicate_long_entry_key (this=0x7e4ff63c51b8, new_rec=0x7e4ff63c5a20 "", key_no=0) at /source/sql/handler.cc:7856
#11 0x000055555b1d5167 in handler::check_duplicate_long_entries (this=0x7e4ff63c51b8, new_rec=0x7e4ff63c5a20 "") at /source/sql/handler.cc:7915
#12 0x000055555b1db873 in handler::ha_write_row (this=0x7e4ff63c51b8, buf=0x7e4ff63c5a20 "") at /source/sql/handler.cc:8203
#13 0x000055555a21dd5a in copy_data_between_tables (thd=0x7eaff6368288, from=0x7d9ff628f308, to=0x7d9ff6298f08, ignore=true, order_num=0, order=0x0, copied=0x7bffdd4da160,
deleted=0x7bffdd4da180, alter_info=0x7bffdd33e320, alter_ctx=0x7bffdd4dae60, online=false, start_alter_id=0) at /source/sql/sql_table.cc:12769
#14 0x000055555a1e79ce in mysql_alter_table (thd=0x7eaff6368288, new_db=0x7eaff636cea0, new_name=0x7eaff636d308, create_info=0x7bffdd33e020, table_list=0x7ecff65c85f8,
recreate_info=0x7bffdd33ed00, alter_info=0x7bffdd33e320, order_num=0, order=0x0, ignore=true, if_exists=false) at /source/sql/sql_table.cc:11863
#15 0x000055555a5e0902 in Sql_cmd_alter_table::execute (this=0x7ecff65c8f20, thd=0x7eaff6368288) at /source/sql/sql_alter.cc:701
#16 0x0000555559be571c in mysql_execute_command (thd=0x7eaff6368288, is_called_from_prepared_stmt=false) at /source/sql/sql_parse.cc:5886
#17 0x0000555559b8f585 in mysql_parse (thd=0x7eaff6368288, rawbuf=0x7ecff65c84a8 "alter ignore table t1 modify t text not null default ''", length=55, parser_state=0x7bffdd4627b0)
at /source/sql/sql_parse.cc:7915
#18 0x0000555559b7e076 in dispatch_command (command=COM_QUERY, thd=0x7eaff6368288, packet=0x7e8ff6320289 "alter ignore table t1 modify t text not null default ''", packet_length=55,
blocking=true) at /source/sql/sql_parse.cc:1902
#19 0x0000555559b94854 in do_command (thd=0x7eaff6368288, blocking=true) at /source/sql/sql_parse.cc:1415
#20 0x000055555a5a5cb4 in do_handle_one_connection (connect=0x7d0ff6213ec8, put_in_cache=true) at /source/sql/sql_connect.cc:1415
#21 0x000055555a5a4ff7 in handle_one_connection (arg=0x7d0ff6213ec8) at /source/sql/sql_connect.cc:1327
#22 0x000055555931c5d7 in asan_thread_start(void*) ()
#23 0x00007ffff742d1c4 in ?? () from /lib/x86_64-linux-gnu/libc.so.6
#24 0x00007ffff74ad85c in ?? () from /lib/x86_64-linux-gnu/libc.so.6
(gdb) frame 3
#3 0x000055555d8c7c4d in my_uca_scanner_next_utf8mb4 (scanner=0x7bffdcfa9e70, param=0x7bffdcfa9ec0) at /source/strings/ctype-uca-scanner_next.inl:84
84 if (scanner->sbeg + 1 < scanner->send)
(gdb) p *scanner
$1 = {wbeg = 0x55555e89b9c0 <nochar>, sbeg = 0x0, send = 0x0, implicit = {0, 0}, page = 0, code = 0}
(gdb) up
#4 0x000055555d8cb785 in my_uca_strnncollsp_onelevel_utf8mb4 (cs=0x7e0ff61f9cb0, level=0x5555628892d0 <my_uca1400_info_tailored+8944>, s=0x7e8ff6370280 '\276' <repeats 200 times>...,
slen=0, t=0x0, tlen=0) at /source/strings/ctype-uca.inl:235
235 t_res= MY_FUNCTION_NAME(scanner_next)(&tscanner, ¶m);
(gdb) up
#5 0x000055555d88276a in my_uca_strnncollsp_utf8mb4 (cs=0x7e0ff61f9cb0, s=0x7e8ff6370280 '\276' <repeats 200 times>..., slen=0, t=0x0, tlen=0) at /source/strings/ctype-uca.inl:280
280 return MY_FUNCTION_NAME(strnncollsp_onelevel)(cs, &cs->uca->level[0],
(gdb) up
#6 0x000055555b0de008 in charset_info_st::strnncollsp (this=0x7e0ff61f9cb0, a=0x7e8ff6370280 '\276' <repeats 200 times>..., alen=0, b=0x0, blen=0) at /source/include/m_ctype.h:1102
1102 return (coll->strnncollsp)(this, a, alen, b, blen);
(gdb) up
#7 0x000055555b0a24f0 in Field_blob::cmp (this=0x7e4ff63c5b18, a=0x7e8ff6370280 '\276' <repeats 200 times>..., a_length=0, b=0x0, b_length=0) at /source/sql/field.cc:9019
9019 return field_charset()->strnncollsp(a, a_length, b, b_length);
(gdb) up
#8 0x000055555b0a291e in Field_blob::cmp (this=0x7e4ff63c5b18, a_ptr=0x7e4ff63c5a20 "", b_ptr=0x7e4ff63c69b8 "") at /source/sql/field.cc:9029
9029 return cmp(blob1, (uint32)a_len, blob2, (uint32)b_len);
(gdb) info locals
blob1 = 0x7e8ff6370280 '\276' <repeats 200 times>...
blob2 = 0x0
a_len = 0
b_len = 0
So could be fixed in Field_blob::cmp (and Field_blob::cmp_prefix)
There are no comments yet on this issue.
{"report":{"fcp":809,"ttfb":220.69999998807907,"pageVisibility":"visible","entityId":133633,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":1,"journeyId":"5d87331f-8a1e-45e1-b73b-55c06f702070","navigationType":0,"readyForUser":891.6999999880791,"redirectCount":0,"resourceLoadedEnd":925.5,"resourceLoadedStart":226.59999999403954,"resourceTiming":[{"duration":15.099999994039536,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2bv2/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":226.59999999403954,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":226.59999999403954,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":241.69999998807907,"responseStart":0,"secureConnectionStart":0},{"duration":15.099999994039536,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2bv2/820016/12ta74/2380add21a9a1006587582385952de73/_/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","startTime":226.90000000596046,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":226.90000000596046,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":242,"responseStart":0,"secureConnectionStart":0},{"duration":77.59999999403954,"initiatorType":"script","name":"https://jira.mariadb.org/s/e9b27a47da5fb0f74a35acd57e9847fb-CDN/lu2bv2/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":227.09999999403954,"connectEnd":227.09999999403954,"connectStart":227.09999999403954,"domainLookupEnd":227.09999999403954,"domainLookupStart":227.09999999403954,"fetchStart":227.09999999403954,"redirectEnd":0,"redirectStart":0,"requestStart":227.09999999403954,"responseEnd":304.69999998807907,"responseStart":304.69999998807907,"secureConnectionStart":227.09999999403954},{"duration":157.7000000178814,"initiatorType":"script","name":"https://jira.mariadb.org/s/c32eb0da7ad9831253f8397e6cc26afd-CDN/lu2bv2/820016/12ta74/2380add21a9a1006587582385952de73/_/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","startTime":227.19999998807907,"connectEnd":227.19999998807907,"connectStart":227.19999998807907,"domainLookupEnd":227.19999998807907,"domainLookupStart":227.19999998807907,"fetchStart":227.19999998807907,"redirectEnd":0,"redirectStart":0,"requestStart":227.19999998807907,"responseEnd":384.90000000596046,"responseStart":384.90000000596046,"secureConnectionStart":227.19999998807907},{"duration":161.19999998807907,"initiatorType":"script","name":"https://jira.mariadb.org/s/bc0bcb146314416123c992714ee00ff7-CDN/lu2bv2/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":227.5,"connectEnd":227.5,"connectStart":227.5,"domainLookupEnd":227.5,"domainLookupStart":227.5,"fetchStart":227.5,"redirectEnd":0,"redirectStart":0,"requestStart":227.5,"responseEnd":388.69999998807907,"responseStart":388.69999998807907,"secureConnectionStart":227.5},{"duration":162.60000002384186,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bv2/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":227.69999998807907,"connectEnd":227.69999998807907,"connectStart":227.69999998807907,"domainLookupEnd":227.69999998807907,"domainLookupStart":227.69999998807907,"fetchStart":227.69999998807907,"redirectEnd":0,"redirectStart":0,"requestStart":227.69999998807907,"responseEnd":390.30000001192093,"responseStart":390.30000001192093,"secureConnectionStart":227.69999998807907},{"duration":163,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bv2/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":227.80000001192093,"connectEnd":227.80000001192093,"connectStart":227.80000001192093,"domainLookupEnd":227.80000001192093,"domainLookupStart":227.80000001192093,"fetchStart":227.80000001192093,"redirectEnd":0,"redirectStart":0,"requestStart":227.80000001192093,"responseEnd":390.80000001192093,"responseStart":390.80000001192093,"secureConnectionStart":227.80000001192093},{"duration":217.59999999403954,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2bv2/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":228.09999999403954,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":228.09999999403954,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":445.69999998807907,"responseStart":0,"secureConnectionStart":0},{"duration":163.2000000178814,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":228.19999998807907,"connectEnd":228.19999998807907,"connectStart":228.19999998807907,"domainLookupEnd":228.19999998807907,"domainLookupStart":228.19999998807907,"fetchStart":228.19999998807907,"redirectEnd":0,"redirectStart":0,"requestStart":228.19999998807907,"responseEnd":391.40000000596046,"responseStart":391.40000000596046,"secureConnectionStart":228.19999998807907},{"duration":217.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2bv2/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":228.40000000596046,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":228.40000000596046,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":445.90000000596046,"responseStart":0,"secureConnectionStart":0},{"duration":163.30000001192093,"initiatorType":"script","name":"https://jira.mariadb.org/s/719848dd97ebe0663199f49a3936487a-CDN/lu2bv2/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":228.59999999403954,"connectEnd":228.59999999403954,"connectStart":228.59999999403954,"domainLookupEnd":228.59999999403954,"domainLookupStart":228.59999999403954,"fetchStart":228.59999999403954,"redirectEnd":0,"redirectStart":0,"requestStart":228.59999999403954,"responseEnd":391.90000000596046,"responseStart":391.90000000596046,"secureConnectionStart":228.59999999403954},{"duration":592.3999999761581,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bv2/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":229.80000001192093,"connectEnd":229.80000001192093,"connectStart":229.80000001192093,"domainLookupEnd":229.80000001192093,"domainLookupStart":229.80000001192093,"fetchStart":229.80000001192093,"redirectEnd":0,"redirectStart":0,"requestStart":229.80000001192093,"responseEnd":822.1999999880791,"responseStart":822.1999999880791,"secureConnectionStart":229.80000001192093},{"duration":589.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bv2/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":233.90000000596046,"connectEnd":233.90000000596046,"connectStart":233.90000000596046,"domainLookupEnd":233.90000000596046,"domainLookupStart":233.90000000596046,"fetchStart":233.90000000596046,"redirectEnd":0,"redirectStart":0,"requestStart":233.90000000596046,"responseEnd":823.4000000059605,"responseStart":823.4000000059605,"secureConnectionStart":233.90000000596046},{"duration":121.89999997615814,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":456.80000001192093,"connectEnd":456.80000001192093,"connectStart":456.80000001192093,"domainLookupEnd":456.80000001192093,"domainLookupStart":456.80000001192093,"fetchStart":456.80000001192093,"redirectEnd":0,"redirectStart":0,"requestStart":456.80000001192093,"responseEnd":578.6999999880791,"responseStart":578.6999999880791,"secureConnectionStart":456.80000001192093},{"duration":213.80000001192093,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2bv2/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","startTime":711.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":711.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":925.3000000119209,"responseStart":0,"secureConnectionStart":0},{"duration":213.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/50bc9be5bfead1a25e72c1a9338c94f6-CDN/lu2bv2/820016/12ta74/e108c7645258ccb43280ed3404e3e949/_/download/contextbatch/css/com.atlassian.jira.plugins.jira-development-integration-plugin:0,-_super,-jira.view.issue,-jira.global,-jira.general,-jira.browse.project,-project.issue.navigator,-atl.general/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true","startTime":712,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":712,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":925.5,"responseStart":0,"secureConnectionStart":0},{"duration":170.90000000596046,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bv2/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","startTime":712.9000000059605,"connectEnd":712.9000000059605,"connectStart":712.9000000059605,"domainLookupEnd":712.9000000059605,"domainLookupStart":712.9000000059605,"fetchStart":712.9000000059605,"redirectEnd":0,"redirectStart":0,"requestStart":712.9000000059605,"responseEnd":883.8000000119209,"responseStart":883.8000000119209,"secureConnectionStart":712.9000000059605},{"duration":205.10000002384186,"initiatorType":"script","name":"https://jira.mariadb.org/s/53a43b6764f587426c7bb9a150184c00-CDN/lu2bv2/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","startTime":713.1999999880791,"connectEnd":713.1999999880791,"connectStart":713.1999999880791,"domainLookupEnd":713.1999999880791,"domainLookupStart":713.1999999880791,"fetchStart":713.1999999880791,"redirectEnd":0,"redirectStart":0,"requestStart":713.1999999880791,"responseEnd":918.3000000119209,"responseStart":918.3000000119209,"secureConnectionStart":713.1999999880791},{"duration":206.09999999403954,"initiatorType":"script","name":"https://jira.mariadb.org/s/630dda803a823fdd5771c4338338e018-CDN/lu2bv2/820016/12ta74/e108c7645258ccb43280ed3404e3e949/_/download/contextbatch/js/com.atlassian.jira.plugins.jira-development-integration-plugin:0,-_super,-jira.view.issue,-jira.global,-jira.general,-jira.browse.project,-project.issue.navigator,-atl.general/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true","startTime":713.5999999940395,"connectEnd":713.5999999940395,"connectStart":713.5999999940395,"domainLookupEnd":713.5999999940395,"domainLookupStart":713.5999999940395,"fetchStart":713.5999999940395,"redirectEnd":0,"redirectStart":0,"requestStart":713.5999999940395,"responseEnd":919.6999999880791,"responseStart":919.6999999880791,"secureConnectionStart":713.5999999940395},{"duration":134.90000000596046,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":800.0999999940395,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":800.0999999940395,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":935,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":29,"responseStart":221,"responseEnd":227,"domLoading":224,"domInteractive":970,"domContentLoadedEventStart":970,"domContentLoadedEventEnd":1023,"domComplete":1254,"loadEventStart":1254,"loadEventEnd":1256,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":941.9000000059605},{"name":"bigPipe.sidebar-id.end","time":942.5999999940395},{"name":"bigPipe.activity-panel-pipe-id.start","time":942.6999999880791},{"name":"bigPipe.activity-panel-pipe-id.end","time":943.1999999880791},{"name":"activityTabFullyLoaded","time":1030.9000000059605}],"measures":[],"correlationId":"d6cdd9fa539587","effectiveType":"4g","downlink":9.1,"rtt":0,"serverDuration":115,"dbReadsTimeInMs":19,"dbConnsTimeInMs":29,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}