On a server started with encrypt-tmp-files=ON and binlog-format=row
ROLLBACK TO sp
causes server to crash in the follow-up COMMIT
CREATE TABLE t (a TEXT) ENGINE = InnoDB;
|
BEGIN;
|
INSERT INTO t VALUES (REPEAT('a', 20000));
|
SAVEPOINT sp;
|
INSERT INTO t VALUES (REPEAT('a', 20000));
|
ROLLBACK TO sp;
|
COMMIT;
|
#0 0x00007ffff63011f7 in raise () from /lib64/libc.so.6
|
#1 0x00007ffff63028e8 in abort () from /lib64/libc.so.6
|
#2 0x00007ffff62fa266 in __assert_fail_base () from /lib64/libc.so.6
|
#3 0x00007ffff62fa312 in __assert_fail () from /lib64/libc.so.6
|
#4 0x0000555555dce308 in MYSQL_BIN_LOG::write_cache (this=this@entry=0x555556edc200 <mysql_bin_log>, thd=<optimized out>, cache=cache@entry=0x7fff9402ffc8) at /mnt/hgfs/repos/mariadb-server/sql/log.cc:7051
|
#5 0x0000555555dcea9e in MYSQL_BIN_LOG::write_transaction_or_stmt (this=this@entry=0x555556edc200 <mysql_bin_log>, entry=entry@entry=0x7fffec271110, commit_id=commit_id@entry=0) at /mnt/hgfs/repos/mariadb-server/sql/log.cc:8059
|
#6 0x0000555555dd6c60 in MYSQL_BIN_LOG::trx_group_commit_leader (this=this@entry=0x555556edc200 <mysql_bin_log>, leader=leader@entry=0x7fffec271110) at /mnt/hgfs/repos/mariadb-server/sql/log.cc:7796
|
#7 0x0000555555dd7469 in MYSQL_BIN_LOG::write_transaction_to_binlog_events (this=this@entry=0x555556edc200 <mysql_bin_log>, entry=entry@entry=0x7fffec271110) at /mnt/hgfs/repos/mariadb-server/sql/log.cc:7593
|
#8 0x0000555555dd79f2 in MYSQL_BIN_LOG::write_transaction_to_binlog (this=this@entry=0x555556edc200 <mysql_bin_log>, thd=thd@entry=0x7fff94000b00, cache_mngr=cache_mngr@entry=0x7fff9402fe20, end_ev=end_ev@entry=0x7fffec2712a0, all=all@entry=true, using_stmt_cache=using_stmt_cache@entry=true, using_trx_cache=using_trx_cache@entry=true) at /mnt/hgfs/repos/mariadb-server/sql/log.cc:7267
|
#9 0x0000555555dd7ba2 in binlog_flush_cache (thd=thd@entry=0x7fff94000b00, cache_mngr=cache_mngr@entry=0x7fff9402fe20, end_ev=end_ev@entry=0x7fffec2712a0, all=all@entry=true, using_stmt=using_stmt@entry=true, using_trx=using_trx@entry=true) at /mnt/hgfs/repos/mariadb-server/sql/log.cc:1785
|
#10 0x0000555555dd7dc8 in binlog_commit_flush_xid_caches (thd=thd@entry=0x7fff94000b00, cache_mngr=cache_mngr@entry=0x7fff9402fe20, all=all@entry=true, xid=xid@entry=9) at /mnt/hgfs/repos/mariadb-server/sql/log.cc:1891
|
#11 0x0000555555dd7fde in MYSQL_BIN_LOG::log_and_order (this=<optimized out>, thd=0x7fff94000b00, xid=9, all=<optimized out>, need_prepare_ordered=<optimized out>, need_commit_ordered=<optimized out>) at /mnt/hgfs/repos/mariadb-server/sql/log.cc:9530
|
#12 0x0000555555cd3d59 in ha_commit_trans (thd=thd@entry=0x7fff94000b00, all=all@entry=true) at /mnt/hgfs/repos/mariadb-server/sql/handler.cc:1465
|
#13 0x0000555555bc4dd7 in trans_commit (thd=thd@entry=0x7fff94000b00) at /mnt/hgfs/repos/mariadb-server/sql/transaction.cc:306
|
#14 0x0000555555ac745b in mysql_execute_command (thd=thd@entry=0x7fff94000b00) at /mnt/hgfs/repos/mariadb-server/sql/sql_parse.cc:5756
|
#15 0x0000555555aca3bd in mysql_parse (thd=thd@entry=0x7fff94000b00, rawbuf=<optimized out>, length=6, parser_state=parser_state@entry=0x7fffec273510, is_com_multi=is_com_multi@entry=false, is_next_command=is_next_command@entry=false) at /mnt/hgfs/repos/mariadb-server/sql/sql_parse.cc:7966
|
#16 0x0000555555acc20f in dispatch_command (command=command@entry=COM_QUERY, thd=thd@entry=0x7fff94000b00, packet=packet@entry=0x7fff9400b161 "COMMIT", packet_length=packet_length@entry=6, is_com_multi=is_com_multi@entry=false, is_next_command=is_next_command@entry=false) at /mnt/hgfs/repos/mariadb-server/sql/sql_parse.cc:1824
|
#17 0x0000555555ace3d6 in do_command (thd=0x7fff94000b00) at /mnt/hgfs/repos/mariadb-server/sql/sql_parse.cc:1369
|
#18 0x0000555555bb7828 in do_handle_one_connection (connect=connect@entry=0x555557ec5390) at /mnt/hgfs/repos/mariadb-server/sql/sql_connect.cc:1420
|
#19 0x0000555555bb7955 in handle_one_connection (arg=arg@entry=0x555557ec5390) at /mnt/hgfs/repos/mariadb-server/sql/sql_connect.cc:1326
|
#20 0x000055555636dd8a in pfs_spawn_thread (arg=0x555557ecdb90) at /mnt/hgfs/repos/mariadb-server/storage/perfschema/pfs.cc:1863
|
#21 0x00007ffff7bc6e25 in start_thread () from /lib64/libpthread.so.0
|
#22 0x00007ffff63c434d in clone () from /lib64/libc.so.6
|
Steps to reproduce:
- put the attached files `a000.test` and `a000-master.opt` into `encryption` MTR test suite (`mysql-test/suite/encryption/t`)
- run `./mysql-test/mtr --debug-server encryption.a000`
- is blocked by
-
MDEV-10259
mysqld crash with certain statement length and order with Galera and encrypt-tmp-files=1
-
-
Closed
Transition |
Time In Source Status |
Execution Times |
Open |
|
In Progress |
|
33d 41m
|
1
|
In Progress |
|
Closed |
|
2d 5h 4m
|
1
|
{"report":{"fcp":1891.5,"ttfb":372.60000014305115,"pageVisibility":"visible","entityId":65122,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"8a95d68f-099c-498a-afaa-55ef6bf3a824","navigationType":0,"readyForUser":1995.7999999523163,"redirectCount":0,"resourceLoadedEnd":2815.7999999523163,"resourceLoadedStart":377.7999999523163,"resourceTiming":[{"duration":1020.6000001430511,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":377.7999999523163,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":377.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1398.4000000953674,"responseStart":0,"secureConnectionStart":0},{"duration":1020.7000000476837,"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":378,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":378,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1398.7000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":1029.7999999523163,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":378.2000000476837,"connectEnd":378.2000000476837,"connectStart":378.2000000476837,"domainLookupEnd":378.2000000476837,"domainLookupStart":378.2000000476837,"fetchStart":378.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":378.2000000476837,"responseEnd":1408,"responseStart":1408,"secureConnectionStart":378.2000000476837},{"duration":1078.8999998569489,"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":378.40000009536743,"connectEnd":378.40000009536743,"connectStart":378.40000009536743,"domainLookupEnd":378.40000009536743,"domainLookupStart":378.40000009536743,"fetchStart":378.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":378.40000009536743,"responseEnd":1457.2999999523163,"responseStart":1457.2999999523163,"secureConnectionStart":378.40000009536743},{"duration":1082.8999998569489,"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":378.60000014305115,"connectEnd":378.60000014305115,"connectStart":378.60000014305115,"domainLookupEnd":378.60000014305115,"domainLookupStart":378.60000014305115,"fetchStart":378.60000014305115,"redirectEnd":0,"redirectStart":0,"requestStart":378.60000014305115,"responseEnd":1461.5,"responseStart":1461.5,"secureConnectionStart":378.60000014305115},{"duration":1083.5,"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":378.7000000476837,"connectEnd":378.7000000476837,"connectStart":378.7000000476837,"domainLookupEnd":378.7000000476837,"domainLookupStart":378.7000000476837,"fetchStart":378.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":378.7000000476837,"responseEnd":1462.2000000476837,"responseStart":1462.2000000476837,"secureConnectionStart":378.7000000476837},{"duration":1084.0999999046326,"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":378.90000009536743,"connectEnd":378.90000009536743,"connectStart":378.90000009536743,"domainLookupEnd":378.90000009536743,"domainLookupStart":378.90000009536743,"fetchStart":378.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":378.90000009536743,"responseEnd":1463,"responseStart":1463,"secureConnectionStart":378.90000009536743},{"duration":1180.8999998569489,"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":379.10000014305115,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":379.10000014305115,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1560,"responseStart":0,"secureConnectionStart":0},{"duration":1084.2000000476837,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":379.40000009536743,"connectEnd":379.40000009536743,"connectStart":379.40000009536743,"domainLookupEnd":379.40000009536743,"domainLookupStart":379.40000009536743,"fetchStart":379.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":379.40000009536743,"responseEnd":1463.6000001430511,"responseStart":1463.6000001430511,"secureConnectionStart":379.40000009536743},{"duration":1180.7000000476837,"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":379.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":379.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1560.2000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":1084.6999998092651,"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":379.60000014305115,"connectEnd":379.60000014305115,"connectStart":379.60000014305115,"domainLookupEnd":379.60000014305115,"domainLookupStart":379.60000014305115,"fetchStart":379.60000014305115,"redirectEnd":0,"redirectStart":0,"requestStart":379.60000014305115,"responseEnd":1464.2999999523163,"responseStart":1464.2999999523163,"secureConnectionStart":379.60000014305115},{"duration":1725.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":385.5,"connectEnd":385.5,"connectStart":385.5,"domainLookupEnd":385.5,"domainLookupStart":385.5,"fetchStart":385.5,"redirectEnd":0,"redirectStart":0,"requestStart":385.5,"responseEnd":2111,"responseStart":2111,"secureConnectionStart":385.5},{"duration":2426.699999809265,"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":389.10000014305115,"connectEnd":389.10000014305115,"connectStart":389.10000014305115,"domainLookupEnd":389.10000014305115,"domainLookupStart":389.10000014305115,"fetchStart":389.10000014305115,"redirectEnd":0,"redirectStart":0,"requestStart":389.10000014305115,"responseEnd":2815.7999999523163,"responseStart":2815.7999999523163,"secureConnectionStart":389.10000014305115},{"duration":551.5,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1572.2999999523163,"connectEnd":1572.2999999523163,"connectStart":1572.2999999523163,"domainLookupEnd":1572.2999999523163,"domainLookupStart":1572.2999999523163,"fetchStart":1572.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":1572.2999999523163,"responseEnd":2123.7999999523163,"responseStart":2123.7999999523163,"secureConnectionStart":1572.2999999523163},{"duration":1025.1000001430511,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1883,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1883,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":2908.100000143051,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":214,"responseStart":372,"responseEnd":389,"domLoading":376,"domInteractive":2839,"domContentLoadedEventStart":2839,"domContentLoadedEventEnd":2903,"domComplete":3503,"loadEventStart":3503,"loadEventEnd":3504,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":2820.600000143051},{"name":"bigPipe.sidebar-id.end","time":2821.5},{"name":"bigPipe.activity-panel-pipe-id.start","time":2821.7000000476837},{"name":"bigPipe.activity-panel-pipe-id.end","time":2822.7000000476837},{"name":"activityTabFullyLoaded","time":2920.2999999523163}],"measures":[],"correlationId":"aa28b0da40125a","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":96,"dbReadsTimeInMs":16,"dbConnsTimeInMs":25,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}