We briefly discussed the new valgrind error in buildbot after your push on
IRC:
https://buildbot.askmonty.org/buildbot/builders/work-amd64-valgrind/builds/6282/steps/test/logs/stdio
main.innodb_mrr w5 [ fail ] Found warnings/errors in server log file!
|
|
==13161== Conditional jump or move depends on uninitialised value(s)
|
==13161== at 0x4C280AA: memcpy (mc_replace_strmem.c:115)
|
==13161== by 0x723F6B: Field_varstring::get_key_image(unsigned char*, unsigned int, Field::imagetype) (field.cc:6932)
|
==13161== by 0x818D5B: key_copy(unsigned char*, unsigned char*, st_key*, unsigned int, bool) (key.cc:146)
|
==13161== by 0x6DD6FE: Mrr_ordered_index_reader::interrupt_read() (multi_range_read.cc:448)
|
==13161== by 0x6DE605: Mrr_ordered_rndpos_reader::refill_from_index_reader() (multi_range_read.cc:688)
|
==13161== by 0x6DE7D2: Mrr_ordered_rndpos_reader::refill_buffer(bool) (multi_range_read.cc:618)
|
==13161== by 0x6DFB27: DsMrr_impl::dsmrr_init(handler*, st_range_seq_if*, void*, unsigned int, unsigned int, st_handler_buffer*) (multi_range_read.cc:966)
|
==13161== by 0x91AAE9: ha_innobase::multi_range_read_init(st_range_seq_if*, void*, unsigned int, unsigned int, st_handler_buffer*) (ha_innodb.cc:13961)
|
==13161== by 0x6DA60A: JOIN_TAB_SCAN_MRR::open() (sql_join_cache.cc:3867)
|
==13161== by 0x6D7363: JOIN_CACHE::join_matching_records(bool) (sql_join_cache.cc:2249)
|
==13161== by 0x6D5647: JOIN_CACHE::join_records(bool) (sql_join_cache.cc:2086)
|
==13161== by 0x5F8259: sub_select_cache(JOIN*, st_join_table*, bool) (sql_select.cc:16717)
|
==13161== by 0x6D71BA: JOIN_CACHE::generate_full_extensions(unsigned char*) (sql_join_cache.cc:2397)
|
==13161== by 0x6D74E6: JOIN_CACHE::join_matching_records(bool) (sql_join_cache.cc:2289)
|
==13161== by 0x6D5647: JOIN_CACHE::join_records(bool) (sql_join_cache.cc:2086)
|
==13161== by 0x5F8219: sub_select_cache(JOIN*, st_join_table*, bool) (sql_select.cc:16697)
|
I took a quick look. The problem seems to be that the code is copying out the
fields of a key from table->record[0] (key_copy()), however, the first length
byte of the value is uninitialised.
I think it's the field col_varchar_key in the table, testcase is appended below.
I checked a bit back up the callstack. The field col_varchar_key is reported
as uninitialised already at the start of
Mrr_ordered_rndpos_reader::refill_from_index_reader(), but I'm not really
familiar with when and how table->record[0] is supposed to be initialised
during multi-range read.
As you said on IRC, your recent patch is related to interrupt_read(), so
probably best if you take a look and see if you can figure out something.
Incidentally, I noticed something that looks wrong in
key_copy(to_key, from_record, key_info, key_length, with_zerofill)
The comments say that the key is copied from `from_record', however actually
the function only works if the from_record passed in is table->record[0] (or
more precisely, the same record as is installed in
key_info->key_part->field). Because it checks the null bit in from_record, but
copies the data from table->record[0]. However, this is not the problem in
this particular failure (as in this case from_record == table->record[0]),
just struck me as something that could easily cause surprises later...
Below is a reduced test case that triggers the valgrind error.
It did not trigger for me with a debug build, but did trigger (in 5.5) with
this build command:
EXTRA_FLAGS="-O3 -fno-omit-frame-pointer -Wno-uninitialized" AM_EXTRA_MAKEFLAGS="VERBOSE=1" BUILD/compile-amd64-valgrind-max
|
-- source include/have_xtradb.inc
|
|
set optimizer_switch='mrr=on,mrr_sort_keys=on,index_condition_pushdown=on';
|
CREATE TABLE t1 (
|
pk int(11) NOT NULL AUTO_INCREMENT,
|
col_int_key int(11) NOT NULL,
|
col_varchar_key varchar(1) NOT NULL,
|
col_varchar_nokey varchar(1) NOT NULL,
|
PRIMARY KEY (pk),
|
KEY col_int_key (col_int_key),
|
KEY col_varchar_key (col_varchar_key,col_int_key)
|
) ENGINE=InnoDB;
|
INSERT INTO t1 VALUES
|
(10,8,'v','v'),
|
(11,8,'f','f'),
|
(12,5,'v','v'),
|
(13,8,'s','s'),
|
(14,8,'a','a'),
|
(15,6,'p','p'),
|
(16,7,'z','z'),
|
(17,2,'a','a'),
|
(18,5,'h','h'),
|
(19,7,'h','h'),
|
(20,2,'v','v'),
|
(21,9,'v','v'),
|
(22,142,'b','b'),
|
(23,3,'y','y'),
|
(24,0,'v','v'),
|
(25,3,'m','m'),
|
(26,5,'z','z'),
|
(27,9,'n','n'),
|
(28,1,'d','d'),
|
(29,107,'a','a');
|
|
CREATE TABLE t2 (
|
pk int(11) NOT NULL AUTO_INCREMENT,
|
col_int_key int(11) NOT NULL,
|
col_varchar_key varchar(1) NOT NULL,
|
col_varchar_nokey varchar(1) NOT NULL,
|
PRIMARY KEY (pk),
|
KEY col_int_key (col_int_key),
|
KEY col_varchar_key (col_varchar_key,col_int_key)
|
) ENGINE=InnoDB;
|
INSERT INTO t2 VALUES
|
(10,3,'i','i'),
|
(11,186,'x','x'),
|
(12,1,'g','g'),
|
(13,8,'q','q'),
|
(14,226,'m','m'),
|
(15,133,'p','p'),
|
(16,6,'e','e'),
|
(17,3,'t','t'),
|
(18,8,'j','j'),
|
(19,5,'h','h'),
|
(20,7,'w','w');
|
|
set join_cache_level=6;
|
set join_buffer_size=1536;
|
SELECT count(*), sum(table1.col_int_key*table2.pk)
|
FROM
|
t2 AS table1, t1 AS table2, t2 AS table3
|
WHERE
|
table3.col_varchar_nokey = table2.col_varchar_key AND table3.pk > table2.col_varchar_nokey ;
|
- blocks
-
MDEV-7069
Fix buildbot failures in main server trees
-
-
Stalled
There are no comments yet on this issue.
{"report":{"fcp":1343.3999998569489,"ttfb":623.3999998569489,"pageVisibility":"visible","entityId":48809,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"0dccf18b-a3f9-49a9-8a6a-8830af5d0a1c","navigationType":0,"readyForUser":1436.1999998092651,"redirectCount":0,"resourceLoadedEnd":1472.3999998569489,"resourceLoadedStart":629.0999999046326,"resourceTiming":[{"duration":181.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":629.0999999046326,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":629.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":810.5999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":181.5,"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":629.3999998569489,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":629.3999998569489,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":810.8999998569489,"responseStart":0,"secureConnectionStart":0},{"duration":230.09999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":629.5,"connectEnd":629.5,"connectStart":629.5,"domainLookupEnd":629.5,"domainLookupStart":629.5,"fetchStart":629.5,"redirectEnd":0,"redirectStart":0,"requestStart":629.5,"responseEnd":859.5999999046326,"responseStart":859.5999999046326,"secureConnectionStart":629.5},{"duration":314.10000014305115,"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":629.6999998092651,"connectEnd":629.6999998092651,"connectStart":629.6999998092651,"domainLookupEnd":629.6999998092651,"domainLookupStart":629.6999998092651,"fetchStart":629.6999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":629.6999998092651,"responseEnd":943.7999999523163,"responseStart":943.7999999523163,"secureConnectionStart":629.6999998092651},{"duration":317.59999990463257,"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":630,"connectEnd":630,"connectStart":630,"domainLookupEnd":630,"domainLookupStart":630,"fetchStart":630,"redirectEnd":0,"redirectStart":0,"requestStart":630,"responseEnd":947.5999999046326,"responseStart":947.5999999046326,"secureConnectionStart":630},{"duration":318,"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":630.0999999046326,"connectEnd":630.0999999046326,"connectStart":630.0999999046326,"domainLookupEnd":630.0999999046326,"domainLookupStart":630.0999999046326,"fetchStart":630.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":630.0999999046326,"responseEnd":948.0999999046326,"responseStart":948.0999999046326,"secureConnectionStart":630.0999999046326},{"duration":318,"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":630.3999998569489,"connectEnd":630.3999998569489,"connectStart":630.3999998569489,"domainLookupEnd":630.3999998569489,"domainLookupStart":630.3999998569489,"fetchStart":630.3999998569489,"redirectEnd":0,"redirectStart":0,"requestStart":630.3999998569489,"responseEnd":948.3999998569489,"responseStart":948.3999998569489,"secureConnectionStart":630.3999998569489},{"duration":372.59999990463257,"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":630.5999999046326,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":630.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1003.1999998092651,"responseStart":0,"secureConnectionStart":0},{"duration":318.10000014305115,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":630.6999998092651,"connectEnd":630.6999998092651,"connectStart":630.6999998092651,"domainLookupEnd":630.6999998092651,"domainLookupStart":630.6999998092651,"fetchStart":630.6999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":630.6999998092651,"responseEnd":948.7999999523163,"responseStart":948.7999999523163,"secureConnectionStart":630.6999998092651},{"duration":372.40000009536743,"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":630.8999998569489,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":630.8999998569489,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1003.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":318.2999999523163,"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":631,"connectEnd":631,"connectStart":631,"domainLookupEnd":631,"domainLookupStart":631,"fetchStart":631,"redirectEnd":0,"redirectStart":0,"requestStart":631,"responseEnd":949.2999999523163,"responseStart":949.2999999523163,"secureConnectionStart":631},{"duration":563.0999999046326,"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":632,"connectEnd":632,"connectStart":632,"domainLookupEnd":632,"domainLookupStart":632,"fetchStart":632,"redirectEnd":0,"redirectStart":0,"requestStart":632,"responseEnd":1195.0999999046326,"responseStart":1195.0999999046326,"secureConnectionStart":632},{"duration":784.2000000476837,"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":632.0999999046326,"connectEnd":632.0999999046326,"connectStart":632.0999999046326,"domainLookupEnd":632.0999999046326,"domainLookupStart":632.0999999046326,"fetchStart":632.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":632.0999999046326,"responseEnd":1416.2999999523163,"responseStart":1416.2999999523163,"secureConnectionStart":632.0999999046326},{"duration":181.59999990463257,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1015.0999999046326,"connectEnd":1015.0999999046326,"connectStart":1015.0999999046326,"domainLookupEnd":1015.0999999046326,"domainLookupStart":1015.0999999046326,"fetchStart":1015.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":1015.0999999046326,"responseEnd":1196.6999998092651,"responseStart":1196.6999998092651,"secureConnectionStart":1015.0999999046326},{"duration":176.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":1296,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1296,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1472.1999998092651,"responseStart":0,"secureConnectionStart":0},{"duration":175.79999995231628,"initiatorType":"link","name":"https://jira.mariadb.org/s/50bc9be5bfead1a25e72c1a9338c94f6-CDN/lu2cib/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&whisper-enabled=true","startTime":1296.5999999046326,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1296.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1472.3999998569489,"responseStart":0,"secureConnectionStart":0},{"duration":149.59999990463257,"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":1297.5,"connectEnd":1297.5,"connectStart":1297.5,"domainLookupEnd":1297.5,"domainLookupStart":1297.5,"fetchStart":1297.5,"redirectEnd":0,"redirectStart":0,"requestStart":1297.5,"responseEnd":1447.0999999046326,"responseStart":1447.0999999046326,"secureConnectionStart":1297.5},{"duration":155.29999995231628,"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":1298,"connectEnd":1298,"connectStart":1298,"domainLookupEnd":1298,"domainLookupStart":1298,"fetchStart":1298,"redirectEnd":0,"redirectStart":0,"requestStart":1298,"responseEnd":1453.2999999523163,"responseStart":1453.2999999523163,"secureConnectionStart":1298},{"duration":156.29999995231628,"initiatorType":"script","name":"https://jira.mariadb.org/s/e0bf5781d46ea69fb123572974cf39de-CDN/lu2cib/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&whisper-enabled=true","startTime":1298.3999998569489,"connectEnd":1298.3999998569489,"connectStart":1298.3999998569489,"domainLookupEnd":1298.3999998569489,"domainLookupStart":1298.3999998569489,"fetchStart":1298.3999998569489,"redirectEnd":0,"redirectStart":0,"requestStart":1298.3999998569489,"responseEnd":1454.6999998092651,"responseStart":1454.6999998092651,"secureConnectionStart":1298.3999998569489},{"duration":186.39999985694885,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1337.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1337.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1523.8999998569489,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":458,"responseStart":623,"responseEnd":626,"domLoading":626,"domInteractive":1540,"domContentLoadedEventStart":1540,"domContentLoadedEventEnd":1591,"domComplete":1932,"loadEventStart":1932,"loadEventEnd":1932,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1524.8999998569489},{"name":"bigPipe.sidebar-id.end","time":1525.6999998092651},{"name":"bigPipe.activity-panel-pipe-id.start","time":1525.7999999523163},{"name":"bigPipe.activity-panel-pipe-id.end","time":1526.2999999523163},{"name":"activityTabFullyLoaded","time":1604.5}],"measures":[],"correlationId":"ad6a2f5ec018b9","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":95,"dbReadsTimeInMs":10,"dbConnsTimeInMs":19,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}