10.0/sql/sql_class.cc:4088: void thd_progress_init(THD*, uint): Assertion `thd->stmt_arena != thd->progress.arena' failed.
151117 21:41:17 [ERROR] mysqld got signal 6 ;
Stack trace from 10.0 commit 4008a3e55bda76fab622de163b174008d2d58abb
#6 0x00007efe3bf22311 in *__GI___assert_fail (assertion=0xf08270 "thd->stmt_arena != thd->progress.arena", file=<optimized out>, line=4088, function=0xf09ee0 "void thd_progress_init(THD*, uint)") at assert.c:81
#7 0x0000000000649b98 in thd_progress_init (thd=0x7efe236f9070, max_stage=3) at 10.0/sql/sql_class.cc:4088
#8 0x0000000000b00cdc in row_merge_sort (trx=0x7efe234ccb78, dup=0x7efe120b00c0, file=0x7efe234df8f8, block=0x7efe11006000 "\002\033aamzgmngfrmdthtdmdhlxkovjdz", tmpfd=0x7efe0cffedc4) at 10.0/storage/xtradb/row/row0merge.cc:2339
#9 0x0000000000adb4ba in fts_parallel_tokenization (arg=0x7efe3b494878) at 10.0/storage/xtradb/row/row0ftsort.cc:854
#10 0x00007efe3dd1cb50 in start_thread (arg=<optimized out>) at pthread_create.c:304
#11 0x00007efe3bfd295d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:112
10.1 also fails, but differently, see MDEV-9129 (10.1 fails both on debug and release builds, while 10.0 only fails on release).
To reproduce, download and unpack ftp://ftp.askmonty.org/public/MDEV-9129_data.gz
create table t1 (groups varchar (255) DEFAULT NULL ) ENGINE=InnoDB;
load data local infile 't1.data' into table t1;
ALTER TABLE t1 ADD FULLTEXT ft_qu_la_contacts_groups (groups);
Default server settings are enough.
Elena Stepanova
made changes -
2015-11-18 01:29
Description
{noformat}
10.0/sql/sql_class.cc:4088: void thd_progress_init(THD*, uint): Assertion `thd->stmt_arena != thd->progress.arena' failed.
151117 21:41:17 [ERROR] mysqld got signal 6 ;
{noformat}
{noformat:title=Stack trace from 10.0 commit 4008a3e55bda76fab622de163b174008d2d58abb}
#6 0x00007efe3bf22311 in *__GI___assert_fail (assertion=0xf08270 "thd->stmt_arena != thd->progress.arena", file=<optimized out>, line=4088, function=0xf09ee0 "void thd_progress_init(THD*, uint)") at assert.c:81
#7 0x0000000000649b98 in thd_progress_init (thd=0x7efe236f9070, max_stage=3) at 10.0/sql/sql_class.cc:4088
#8 0x0000000000b00cdc in row_merge_sort (trx=0x7efe234ccb78, dup=0x7efe120b00c0, file=0x7efe234df8f8, block=0x7efe11006000 "\002\033aamzgmngfrmdthtdmdhlxkovjdz", tmpfd=0x7efe0cffedc4) at 10.0/storage/xtradb/row/row0merge.cc:2339
#9 0x0000000000adb4ba in fts_parallel_tokenization (arg=0x7efe3b494878) at 10.0/storage/xtradb/row/row0ftsort.cc:854
#10 0x00007efe3dd1cb50 in start_thread (arg=<optimized out>) at pthread_create.c:304
#11 0x00007efe3bfd295d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:112
{noformat}
10.1 also fails, but differently, see MDEV-9129 (10.1 fails both on debug and release builds, while 10.0 only fails on release).
To reproduce, download and unpack ftp://ftp.askmonty.org/public/MDEV-9129_data.gz
{code:sql}
create table t1 (groups varchar(255) DEFAULT NULL) ENGINE=InnoDB;
load data local infile '/home/elenst/tmp/t1.data' into table t1;
ALTER TABLE t1 ADD FULLTEXT ft_qu_la_contacts_groups (groups);
{code}
{noformat}
10.0/sql/sql_class.cc:4088: void thd_progress_init(THD*, uint): Assertion `thd->stmt_arena != thd->progress.arena' failed.
151117 21:41:17 [ERROR] mysqld got signal 6 ;
{noformat}
{noformat:title=Stack trace from 10.0 commit 4008a3e55bda76fab622de163b174008d2d58abb}
#6 0x00007efe3bf22311 in *__GI___assert_fail (assertion=0xf08270 "thd->stmt_arena != thd->progress.arena", file=<optimized out>, line=4088, function=0xf09ee0 "void thd_progress_init(THD*, uint)") at assert.c:81
#7 0x0000000000649b98 in thd_progress_init (thd=0x7efe236f9070, max_stage=3) at 10.0/sql/sql_class.cc:4088
#8 0x0000000000b00cdc in row_merge_sort (trx=0x7efe234ccb78, dup=0x7efe120b00c0, file=0x7efe234df8f8, block=0x7efe11006000 "\002\033aamzgmngfrmdthtdmdhlxkovjdz", tmpfd=0x7efe0cffedc4) at 10.0/storage/xtradb/row/row0merge.cc:2339
#9 0x0000000000adb4ba in fts_parallel_tokenization (arg=0x7efe3b494878) at 10.0/storage/xtradb/row/row0ftsort.cc:854
#10 0x00007efe3dd1cb50 in start_thread (arg=<optimized out>) at pthread_create.c:304
#11 0x00007efe3bfd295d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:112
{noformat}
10.1 also fails, but differently, see MDEV-9129 (10.1 fails both on debug and release builds, while 10.0 only fails on release).
To reproduce, download and unpack ftp://ftp.askmonty.org/public/MDEV-9129_data.gz
{code:sql}
create table t1 (groups varchar(255) DEFAULT NULL) ENGINE=InnoDB;
load data local infile 't1.data' into table t1;
ALTER TABLE t1 ADD FULLTEXT ft_qu_la_contacts_groups (groups);
{code}
Elena Stepanova
made changes -
2015-11-18 01:30
Description
{noformat}
10.0/sql/sql_class.cc:4088: void thd_progress_init(THD*, uint): Assertion `thd->stmt_arena != thd->progress.arena' failed.
151117 21:41:17 [ERROR] mysqld got signal 6 ;
{noformat}
{noformat:title=Stack trace from 10.0 commit 4008a3e55bda76fab622de163b174008d2d58abb}
#6 0x00007efe3bf22311 in *__GI___assert_fail (assertion=0xf08270 "thd->stmt_arena != thd->progress.arena", file=<optimized out>, line=4088, function=0xf09ee0 "void thd_progress_init(THD*, uint)") at assert.c:81
#7 0x0000000000649b98 in thd_progress_init (thd=0x7efe236f9070, max_stage=3) at 10.0/sql/sql_class.cc:4088
#8 0x0000000000b00cdc in row_merge_sort (trx=0x7efe234ccb78, dup=0x7efe120b00c0, file=0x7efe234df8f8, block=0x7efe11006000 "\002\033aamzgmngfrmdthtdmdhlxkovjdz", tmpfd=0x7efe0cffedc4) at 10.0/storage/xtradb/row/row0merge.cc:2339
#9 0x0000000000adb4ba in fts_parallel_tokenization (arg=0x7efe3b494878) at 10.0/storage/xtradb/row/row0ftsort.cc:854
#10 0x00007efe3dd1cb50 in start_thread (arg=<optimized out>) at pthread_create.c:304
#11 0x00007efe3bfd295d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:112
{noformat}
10.1 also fails, but differently, see MDEV-9129 (10.1 fails both on debug and release builds, while 10.0 only fails on release).
To reproduce, download and unpack ftp://ftp.askmonty.org/public/MDEV-9129_data.gz
{code:sql}
create table t1 (groups varchar(255) DEFAULT NULL) ENGINE=InnoDB;
load data local infile 't1.data' into table t1;
ALTER TABLE t1 ADD FULLTEXT ft_qu_la_contacts_groups (groups);
{code}
{noformat}
10.0/sql/sql_class.cc:4088: void thd_progress_init(THD*, uint): Assertion `thd->stmt_arena != thd->progress.arena' failed.
151117 21:41:17 [ERROR] mysqld got signal 6 ;
{noformat}
{noformat:title=Stack trace from 10.0 commit 4008a3e55bda76fab622de163b174008d2d58abb}
#6 0x00007efe3bf22311 in *__GI___assert_fail (assertion=0xf08270 "thd->stmt_arena != thd->progress.arena", file=<optimized out>, line=4088, function=0xf09ee0 "void thd_progress_init(THD*, uint)") at assert.c:81
#7 0x0000000000649b98 in thd_progress_init (thd=0x7efe236f9070, max_stage=3) at 10.0/sql/sql_class.cc:4088
#8 0x0000000000b00cdc in row_merge_sort (trx=0x7efe234ccb78, dup=0x7efe120b00c0, file=0x7efe234df8f8, block=0x7efe11006000 "\002\033aamzgmngfrmdthtdmdhlxkovjdz", tmpfd=0x7efe0cffedc4) at 10.0/storage/xtradb/row/row0merge.cc:2339
#9 0x0000000000adb4ba in fts_parallel_tokenization (arg=0x7efe3b494878) at 10.0/storage/xtradb/row/row0ftsort.cc:854
#10 0x00007efe3dd1cb50 in start_thread (arg=<optimized out>) at pthread_create.c:304
#11 0x00007efe3bfd295d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:112
{noformat}
10.1 also fails, but differently, see MDEV-9129 (10.1 fails both on debug and release builds, while 10.0 only fails on release).
To reproduce, download and unpack ftp://ftp.askmonty.org/public/MDEV-9129_data.gz
{code:sql}
create table t1 (groups varchar(255) DEFAULT NULL) ENGINE=InnoDB;
load data local infile 't1.data' into table t1;
ALTER TABLE t1 ADD FULLTEXT ft_qu_la_contacts_groups (groups);
{code}
Default server settings are enough.
Elena Stepanova
made changes -
2015-11-18 01:30
Status
Open
[ 1
]
Confirmed
[ 10101
]
Jan Lindström (Inactive)
made changes -
2015-12-10 16:55
Component/s
Storage Engine - InnoDB
[ 10129
]
Fix Version/s
10.0.23
[ 20401
]
Fix Version/s
10.0
[ 16000
]
Resolution
Fixed
[ 1
]
Status
In Progress
[ 3
]
Closed
[ 6
]
Sergei Golubchik
made changes -
2021-12-06 21:42
Workflow
MariaDB v3
[ 72627
]
MariaDB v4
[ 149837
]
{"report":{"fcp":1184.7999999523163,"ttfb":343.10000002384186,"pageVisibility":"visible","entityId":54227,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"8c4c51df-ca6c-409a-b642-3998a24d3056","navigationType":0,"readyForUser":1266.1000000238419,"redirectCount":0,"resourceLoadedEnd":2038.2999999523163,"resourceLoadedStart":348.7000000476837,"resourceTiming":[{"duration":353.59999990463257,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2bu7/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":348.7000000476837,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":348.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":702.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":353.8000000715256,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2bu7/820016/12ta74/8679b4946efa1a0bb029a3a22206fb5d/_/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":348.89999997615814,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":348.89999997615814,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":702.7000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":362.39999997615814,"initiatorType":"script","name":"https://jira.mariadb.org/s/fbf975c0cce4b1abf04784eeae9ba1f4-CDN/lu2bu7/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":349.10000002384186,"connectEnd":349.10000002384186,"connectStart":349.10000002384186,"domainLookupEnd":349.10000002384186,"domainLookupStart":349.10000002384186,"fetchStart":349.10000002384186,"redirectEnd":0,"redirectStart":0,"requestStart":349.10000002384186,"responseEnd":711.5,"responseStart":711.5,"secureConnectionStart":349.10000002384186},{"duration":420.60000002384186,"initiatorType":"script","name":"https://jira.mariadb.org/s/099b33461394b8015fc36c0a4b96e19f-CDN/lu2bu7/820016/12ta74/8679b4946efa1a0bb029a3a22206fb5d/_/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":349.2999999523163,"connectEnd":349.2999999523163,"connectStart":349.2999999523163,"domainLookupEnd":349.2999999523163,"domainLookupStart":349.2999999523163,"fetchStart":349.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":349.2999999523163,"responseEnd":769.8999999761581,"responseStart":769.8999999761581,"secureConnectionStart":349.2999999523163},{"duration":423.7000000476837,"initiatorType":"script","name":"https://jira.mariadb.org/s/94c15bff32baef80f4096a08aceae8bc-CDN/lu2bu7/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":349.39999997615814,"connectEnd":349.39999997615814,"connectStart":349.39999997615814,"domainLookupEnd":349.39999997615814,"domainLookupStart":349.39999997615814,"fetchStart":349.39999997615814,"redirectEnd":0,"redirectStart":0,"requestStart":349.39999997615814,"responseEnd":773.1000000238419,"responseStart":773.1000000238419,"secureConnectionStart":349.39999997615814},{"duration":424,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":349.7000000476837,"connectEnd":349.7000000476837,"connectStart":349.7000000476837,"domainLookupEnd":349.7000000476837,"domainLookupStart":349.7000000476837,"fetchStart":349.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":349.7000000476837,"responseEnd":773.7000000476837,"responseStart":773.7000000476837,"secureConnectionStart":349.7000000476837},{"duration":424.2000000476837,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":349.89999997615814,"connectEnd":349.89999997615814,"connectStart":349.89999997615814,"domainLookupEnd":349.89999997615814,"domainLookupStart":349.89999997615814,"fetchStart":349.89999997615814,"redirectEnd":0,"redirectStart":0,"requestStart":349.89999997615814,"responseEnd":774.1000000238419,"responseStart":774,"secureConnectionStart":349.89999997615814},{"duration":504.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2bu7/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":350.10000002384186,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":350.10000002384186,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":854.6000000238419,"responseStart":0,"secureConnectionStart":0},{"duration":424.39999997615814,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":350.2000000476837,"connectEnd":350.2000000476837,"connectStart":350.2000000476837,"domainLookupEnd":350.2000000476837,"domainLookupStart":350.2000000476837,"fetchStart":350.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":350.2000000476837,"responseEnd":774.6000000238419,"responseStart":774.6000000238419,"secureConnectionStart":350.2000000476837},{"duration":504.40000009536743,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2bu7/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":350.2999999523163,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":350.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":854.7000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":424.60000002384186,"initiatorType":"script","name":"https://jira.mariadb.org/s/3339d87fa2538a859872f2df449bf8d0-CDN/lu2bu7/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":350.5,"connectEnd":350.5,"connectStart":350.5,"domainLookupEnd":350.5,"domainLookupStart":350.5,"fetchStart":350.5,"redirectEnd":0,"redirectStart":0,"requestStart":350.5,"responseEnd":775.1000000238419,"responseStart":775.1000000238419,"secureConnectionStart":350.5},{"duration":747.3000000715256,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":356.2999999523163,"connectEnd":356.2999999523163,"connectStart":356.2999999523163,"domainLookupEnd":356.2999999523163,"domainLookupStart":356.2999999523163,"fetchStart":356.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":356.2999999523163,"responseEnd":1103.6000000238419,"responseStart":1103.6000000238419,"secureConnectionStart":356.2999999523163},{"duration":1654,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":356.2999999523163,"connectEnd":356.2999999523163,"connectStart":356.2999999523163,"domainLookupEnd":356.2999999523163,"domainLookupStart":356.2999999523163,"fetchStart":356.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":356.2999999523163,"responseEnd":2010.2999999523163,"responseStart":2010.2999999523163,"secureConnectionStart":356.2999999523163},{"duration":241.20000004768372,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":866.3999999761581,"connectEnd":866.3999999761581,"connectStart":866.3999999761581,"domainLookupEnd":866.3999999761581,"domainLookupStart":866.3999999761581,"fetchStart":866.3999999761581,"redirectEnd":0,"redirectStart":0,"requestStart":866.3999999761581,"responseEnd":1107.6000000238419,"responseStart":1107.6000000238419,"secureConnectionStart":866.3999999761581},{"duration":908.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2bu7/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":1129.7999999523163,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1129.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":2038.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":886.3000000715256,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2bu7/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":1130.8999999761581,"connectEnd":1130.8999999761581,"connectStart":1130.8999999761581,"domainLookupEnd":1130.8999999761581,"domainLookupStart":1130.8999999761581,"fetchStart":1130.8999999761581,"redirectEnd":0,"redirectStart":0,"requestStart":1130.8999999761581,"responseEnd":2017.2000000476837,"responseStart":2017.2000000476837,"secureConnectionStart":1130.8999999761581},{"duration":892,"initiatorType":"script","name":"https://jira.mariadb.org/s/f51ef5507eea4c158f257c66c93b2a3f-CDN/lu2bu7/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":1131.3999999761581,"connectEnd":1131.3999999761581,"connectStart":1131.3999999761581,"domainLookupEnd":1131.3999999761581,"domainLookupStart":1131.3999999761581,"fetchStart":1131.3999999761581,"redirectEnd":0,"redirectStart":0,"requestStart":1131.3999999761581,"responseEnd":2023.3999999761581,"responseStart":2023.3999999761581,"secureConnectionStart":1131.3999999761581},{"duration":892,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1178.6000000238419,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1178.6000000238419,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":2070.600000023842,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":152,"responseStart":343,"responseEnd":352,"domLoading":346,"domInteractive":2080,"domContentLoadedEventStart":2080,"domContentLoadedEventEnd":2129,"domComplete":2454,"loadEventStart":2454,"loadEventEnd":2455,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":2045.7000000476837},{"name":"bigPipe.sidebar-id.end","time":2046.5},{"name":"bigPipe.activity-panel-pipe-id.start","time":2046.6000000238419},{"name":"bigPipe.activity-panel-pipe-id.end","time":2049.899999976158},{"name":"activityTabFullyLoaded","time":2150.2000000476837}],"measures":[],"correlationId":"dc072b75321af8","effectiveType":"4g","downlink":9.5,"rtt":0,"serverDuration":128,"dbReadsTimeInMs":23,"dbConnsTimeInMs":31,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
commit 311f0308d04f3a55ad18470ca39e9d44479c4782
Author: Jan Lindström <jan.lindstrom@mariadb.com>
Date: Thu Dec 10 16:41:46 2015 +0200
MDEV-9148: Assertion `thd->stmt_arena != thd->progress.arena' failed in thd_progress_initCalled thd_progress_init() from several threads used for FT-index
creation. For FT-indexes, need better way to report progress,
remove current one for them.