Note: see also MDEV-7581, might be related.
Stack trace from 5.5 revno 4433
|
#3 <signal handler called>
|
#4 0x00000000006e67f1 in st_select_lex_unit::cleanup (this=0x7f502b649128) at 5.5/sql/sql_union.cc:887
|
#5 0x00000000006e6c19 in st_select_lex::cleanup (this=0x7f502b56a1d0) at 5.5/sql/sql_union.cc:1022
|
#6 0x000000000066c523 in mysql_select (thd=0x7f502c550060, rref_pointer_array=0x7f502b56a440, tables=0x7f502b554648, wild_num=0, fields=..., conds=0x0, og_num=0, order=0x0, group=0x0, having=0x0, proc_param=0x0, select_options=3489663744, result=0x7f502b662da8, unit=0x7f502b569af0, select_lex=0x7f502b56a1d0) at 5.5/sql/sql_select.cc:3106
|
#7 0x0000000000662f69 in handle_select (thd=0x7f502c550060, lex=0x7f502b569a40, result=0x7f502b662da8, setup_tables_done_option=1073741824) at 5.5/sql/sql_select.cc:319
|
#8 0x000000000063735d in mysql_execute_command (thd=0x7f502c550060) at 5.5/sql/sql_parse.cc:3060
|
#9 0x000000000091a5ac in sp_instr_stmt::exec_core (this=0x7f502b56b010, thd=0x7f502c550060, nextp=0x7f502bfb46a8) at 5.5/sql/sp_head.cc:3222
|
#10 0x0000000000919d91 in sp_lex_keeper::reset_lex_and_exec_core (this=0x7f502b56b050, thd=0x7f502c550060, nextp=0x7f502bfb46a8, open_tables=false, instr=0x7f502b56b010) at 5.5/sql/sp_head.cc:3000
|
#11 0x000000000091a310 in sp_instr_stmt::execute (this=0x7f502b56b010, thd=0x7f502c550060, nextp=0x7f502bfb46a8) at 5.5/sql/sp_head.cc:3146
|
#12 0x0000000000916144 in sp_head::execute (this=0x7f502b569078, thd=0x7f502c550060, merge_da_on_success=false) at 5.5/sql/sp_head.cc:1433
|
#13 0x0000000000916c13 in sp_head::execute_trigger (this=0x7f502b569078, thd=0x7f502c550060, db_name=0x7f502b458ca8, table_name=0x7f502b458cb8, grant_info=0x7f502b460728) at 5.5/sql/sp_head.cc:1738
|
#14 0x00000000006e0372 in Table_triggers_list::process_triggers (this=0x7f502b460678, thd=0x7f502c550060, event=TRG_EVENT_INSERT, time_type=TRG_ACTION_BEFORE, old_row_is_record1=true) at 5.5/sql/sql_trigger.cc:2156
|
#15 0x00000000005e4661 in fill_record_n_invoke_before_triggers (thd=0x7f502c550060, fields=..., values=..., ignore_errors=false, triggers=0x7f502b460678, event=TRG_EVENT_INSERT) at 5.5/sql/sql_base.cc:9068
|
#16 0x00000000006187bd in mysql_insert (thd=0x7f502c550060, table_list=0x7f502b687198, fields=..., values_list=..., update_fields=..., update_values=..., duplic=DUP_ERROR, ignore=false) at 5.5/sql/sql_insert.cc:907
|
#17 0x0000000000636ef1 in mysql_execute_command (thd=0x7f502c550060) at 5.5/sql/sql_parse.cc:2974
|
#18 0x000000000063ec8e in mysql_parse (thd=0x7f502c550060, rawbuf=0x7f502b687078 "INSERT INTO `view_DD` ( `pk` ) VALUES (NULL)", length=44, parser_state=0x7f502bfb5620) at 5.5/sql/sql_parse.cc:5909
|
#19 0x00000000006328d1 in dispatch_command (command=COM_QUERY, thd=0x7f502c550060, packet=0x7f502c607061 "INSERT INTO `view_DD` ( `pk` ) VALUES (NULL)", packet_length=44) at 5.5/sql/sql_parse.cc:1079
|
#20 0x0000000000631a5d in do_command (thd=0x7f502c550060) at 5.5/sql/sql_parse.cc:793
|
#21 0x00000000007340ea in do_handle_one_connection (thd_arg=0x7f502c550060) at 5.5/sql/sql_connect.cc:1266
|
#22 0x0000000000733ba9 in handle_one_connection (arg=0x7f502c550060) at 5.5/sql/sql_connect.cc:1181
|
#23 0x0000000000b6c2cd in pfs_spawn_thread (arg=0x7f502c571ca0) at 5.5/storage/perfschema/pfs.cc:1015
|
#24 0x00007f50327d5b50 in start_thread (arg=<optimized out>) at pthread_create.c:304
|
#25 0x00007f5030a8b70d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:112
|
Trying to get some variables.
|
Some pointers may be invalid and cause the dump to abort.
|
Query (0x7f502b662078): INSERT INTO `view_BB` SELECT * FROM `view_A` LIMIT 0
|
Connection ID (thread ID): 2
|
Status: NOT_KILLED
|
Test case
|
SET sql_mode = ONLY_FULL_GROUP_BY;
|
|
CREATE TABLE A (
|
pk INTEGER AUTO_INCREMENT,
|
col_int_key INTEGER,
|
col_varchar_key VARCHAR(1),
|
PRIMARY KEY (pk)
|
) ENGINE=MyISAM;
|
CREATE VIEW view_A AS SELECT * FROM A;
|
CREATE TABLE C (
|
pk INTEGER AUTO_INCREMENT,
|
col_int_nokey INTEGER,
|
col_int_key INTEGER,
|
col_date_key DATE,
|
col_date_nokey DATE,
|
col_time_key TIME,
|
col_time_nokey TIME,
|
col_datetime_key DATETIME,
|
col_datetime_nokey DATETIME,
|
col_varchar_key VARCHAR(1),
|
col_varchar_nokey VARCHAR(1),
|
PRIMARY KEY (pk)
|
) ENGINE=MyISAM;
|
CREATE VIEW view_C AS SELECT * FROM C;
|
CREATE TABLE AA (
|
pk INTEGER AUTO_INCREMENT,
|
col_int_nokey INTEGER,
|
col_int_key INTEGER,
|
col_date_key DATE,
|
col_date_nokey DATE,
|
col_time_key TIME,
|
col_time_nokey TIME,
|
col_datetime_key DATETIME,
|
col_datetime_nokey DATETIME,
|
col_varchar_key VARCHAR(1),
|
col_varchar_nokey VARCHAR(1),
|
PRIMARY KEY (pk),
|
KEY (col_varchar_key, col_int_key)
|
) ENGINE=MyISAM;
|
CREATE VIEW view_AA AS SELECT * FROM AA;
|
CREATE TABLE BB (
|
pk INTEGER AUTO_INCREMENT,
|
col_int_key INTEGER,
|
col_varchar_key VARCHAR(1),
|
col_varchar_nokey VARCHAR(1),
|
PRIMARY KEY (pk),
|
KEY (col_varchar_key, col_int_key)
|
) ENGINE=MyISAM;
|
CREATE VIEW view_BB AS SELECT * FROM BB;
|
CREATE TABLE DD (
|
pk INTEGER AUTO_INCREMENT,
|
col_int_key INTEGER,
|
col_date_key DATE,
|
col_time_key TIME,
|
col_datetime_key DATETIME,
|
col_varchar_key VARCHAR(1),
|
PRIMARY KEY (pk),
|
KEY (col_varchar_key, col_int_key)
|
) ENGINE=MyISAM;
|
CREATE VIEW view_DD AS SELECT * FROM DD;
|
CREATE TRIGGER k BEFORE INSERT ON `DD` FOR EACH ROW INSERT INTO `view_BB` SELECT * FROM `view_A` LIMIT 0 ;
|
CREATE TRIGGER r BEFORE INSERT ON `A` FOR EACH ROW INSERT INTO `view_AA` SELECT * FROM `view_C` LIMIT 0 ;
|
--error ER_WRONG_AUTO_KEY
|
ALTER TABLE `DD` DROP PRIMARY KEY;
|
INSERT INTO `view_A` ( `pk` ) VALUES (NULL);
|
--error 0,ER_WRONG_VALUE_COUNT_ON_ROW
|
INSERT INTO `DD` ( `pk` ) VALUES (NULL);
|
INSERT INTO `A` ( `pk` ) VALUES (NULL);
|
INSERT INTO `view_DD` ( `pk` ) VALUES (NULL);
|
{"report":{"fcp":1029,"ttfb":238.5999994277954,"pageVisibility":"visible","entityId":50046,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"6eae8a03-e4a4-42f5-8aec-c04de7ab8998","navigationType":0,"readyForUser":1143,"redirectCount":0,"resourceLoadedEnd":758.5,"resourceLoadedStart":252,"resourceTiming":[{"duration":37.89999961853027,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":252,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":252,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":289.8999996185303,"responseStart":0,"secureConnectionStart":0},{"duration":226.69999980926514,"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":252.30000019073486,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":252.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":479,"responseStart":0,"secureConnectionStart":0},{"duration":236.19999980926514,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":252.39999961853027,"connectEnd":252.39999961853027,"connectStart":252.39999961853027,"domainLookupEnd":252.39999961853027,"domainLookupStart":252.39999961853027,"fetchStart":252.39999961853027,"redirectEnd":0,"redirectStart":0,"requestStart":252.39999961853027,"responseEnd":488.5999994277954,"responseStart":488.5999994277954,"secureConnectionStart":252.39999961853027},{"duration":277.80000019073486,"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":252.5999994277954,"connectEnd":252.5999994277954,"connectStart":252.5999994277954,"domainLookupEnd":252.5999994277954,"domainLookupStart":252.5999994277954,"fetchStart":252.5999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":252.5999994277954,"responseEnd":530.3999996185303,"responseStart":530.3999996185303,"secureConnectionStart":252.5999994277954},{"duration":281.69999980926514,"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":252.80000019073486,"connectEnd":252.80000019073486,"connectStart":252.80000019073486,"domainLookupEnd":252.80000019073486,"domainLookupStart":252.80000019073486,"fetchStart":252.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":252.80000019073486,"responseEnd":534.5,"responseStart":534.5,"secureConnectionStart":252.80000019073486},{"duration":282.19999980926514,"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":253,"connectEnd":253,"connectStart":253,"domainLookupEnd":253,"domainLookupStart":253,"fetchStart":253,"redirectEnd":0,"redirectStart":0,"requestStart":253,"responseEnd":535.1999998092651,"responseStart":535.1999998092651,"secureConnectionStart":253},{"duration":282.3999996185303,"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":253.19999980926514,"connectEnd":253.19999980926514,"connectStart":253.19999980926514,"domainLookupEnd":253.19999980926514,"domainLookupStart":253.19999980926514,"fetchStart":253.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":253.19999980926514,"responseEnd":535.5999994277954,"responseStart":535.5999994277954,"secureConnectionStart":253.19999980926514},{"duration":391.19999980926514,"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":253.30000019073486,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":253.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":644.5,"responseStart":0,"secureConnectionStart":0},{"duration":282.69999980926514,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":253.5,"connectEnd":253.5,"connectStart":253.5,"domainLookupEnd":253.5,"domainLookupStart":253.5,"fetchStart":253.5,"redirectEnd":0,"redirectStart":0,"requestStart":253.5,"responseEnd":536.1999998092651,"responseStart":536.1999998092651,"secureConnectionStart":253.5},{"duration":391.20000076293945,"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":253.5999994277954,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":253.5999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":644.8000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":283,"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":253.80000019073486,"connectEnd":253.80000019073486,"connectStart":253.80000019073486,"domainLookupEnd":253.80000019073486,"domainLookupStart":253.80000019073486,"fetchStart":253.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":253.80000019073486,"responseEnd":536.8000001907349,"responseStart":536.8000001907349,"secureConnectionStart":253.80000019073486},{"duration":450.19999980926514,"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":259.8999996185303,"connectEnd":259.8999996185303,"connectStart":259.8999996185303,"domainLookupEnd":259.8999996185303,"domainLookupStart":259.8999996185303,"fetchStart":259.8999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":259.8999996185303,"responseEnd":710.0999994277954,"responseStart":710.0999994277954,"secureConnectionStart":259.8999996185303},{"duration":498.5,"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":260,"connectEnd":260,"connectStart":260,"domainLookupEnd":260,"domainLookupStart":260,"fetchStart":260,"redirectEnd":0,"redirectStart":0,"requestStart":260,"responseEnd":758.5,"responseStart":758.5,"secureConnectionStart":260},{"duration":79.19999980926514,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":675.8999996185303,"connectEnd":675.8999996185303,"connectStart":675.8999996185303,"domainLookupEnd":675.8999996185303,"domainLookupStart":675.8999996185303,"fetchStart":675.8999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":675.8999996185303,"responseEnd":755.0999994277954,"responseStart":755.0999994277954,"secureConnectionStart":675.8999996185303}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":59,"responseStart":239,"responseEnd":255,"domLoading":250,"domInteractive":1230,"domContentLoadedEventStart":1230,"domContentLoadedEventEnd":1282,"domComplete":1499,"loadEventStart":1499,"loadEventEnd":1501,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1209.3000001907349},{"name":"bigPipe.sidebar-id.end","time":1210.1999998092651},{"name":"bigPipe.activity-panel-pipe-id.start","time":1210.3000001907349},{"name":"bigPipe.activity-panel-pipe-id.end","time":1211.1999998092651},{"name":"activityTabFullyLoaded","time":1312.0999994277954}],"measures":[],"correlationId":"e08ddf06e4c267","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":99,"dbReadsTimeInMs":11,"dbConnsTimeInMs":20,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
The problem was that select_lex->non_agg_fields was not properly reset for re-execution and this caused an overwrite of a random memory position.
The fix was move non_agg_fields from select_lext to JOIN, which is properly reset.
Fix pushed into the 5.5 tree.