Sprint:
10.2.2-3, 5.5.54, 5.5.55
mysqld: /data/src/10.1/sql/ha_partition.cc:7426: void ha_partition::late_extra_cache(uint): Assertion `m_extra_cache' failed.
160722 16:20:42 [ERROR] mysqld got signal 6 ;
#6 0x00007f32289d6266 in __assert_fail_base (fmt=0x7f3228b0f238 "%s%s%s:%u: %s%sAssertion `%s' failed.\n%n", assertion=assertion@entry=0x7f322bcce324 "m_extra_cache", file=file@entry=0x7f322bccc360 "/data/src/10.1/sql/ha_partition.cc", line=line@entry=7426, function=function@entry=0x7f322bccffa0 <ha_partition::late_extra_cache(unsigned int)::__PRETTY_FUNCTION__> "void ha_partition::late_extra_cache(uint)") at assert.c:92
#7 0x00007f32289d6312 in __GI___assert_fail (assertion=0x7f322bcce324 "m_extra_cache", file=0x7f322bccc360 "/data/src/10.1/sql/ha_partition.cc", line=7426, function=0x7f322bccffa0 <ha_partition::late_extra_cache(unsigned int)::__PRETTY_FUNCTION__> "void ha_partition::late_extra_cache(uint)") at assert.c:101
#8 0x00007f322ba39524 in ha_partition::late_extra_cache (this=0x7f31fbc9a088, partition_id=0) at /data/src/10.1/sql/ha_partition.cc:7426
#9 0x00007f322ba34ac4 in ha_partition::rnd_init (this=0x7f31fbc9a088, scan=true) at /data/src/10.1/sql/ha_partition.cc:4787
#10 0x00007f322b16c40c in handler::ha_rnd_init (this=0x7f31fbc9a088, scan=true) at /data/src/10.1/sql/handler.h:2782
#11 0x00007f322b4196d9 in handler::read_first_row (this=0x7f31fbc9a088, buf=0x7f31fbc4f098 "\377\217\217\217\217\245\245\245\377\b", primary_key=64) at /data/src/10.1/sql/handler.cc:2770
#12 0x00007f322b25c847 in handler::ha_read_first_row (this=0x7f31fbc9a088, buf=0x7f31fbc4f098 "\377\217\217\217\217\245\245\245\377\b", primary_key=64) at /data/src/10.1/sql/sql_class.h:5424
#13 0x00007f322b2468f5 in join_read_system (tab=0x7f31fbc23060) at /data/src/10.1/sql/sql_select.cc:18846
#14 0x00007f322b2464d9 in join_read_const_table (thd=0x7f3204f56070, tab=0x7f31fbc23060, pos=0x7f31fbc235b0) at /data/src/10.1/sql/sql_select.cc:18742
#15 0x00007f322b22169a in make_join_statistics (join=0x7f31fbc22940, tables_list=..., keyuse_array=0x7f31fbc22c70) at /data/src/10.1/sql/sql_select.cc:3776
#16 0x00007f322b218fa2 in JOIN::optimize_inner (this=0x7f31fbc22940) at /data/src/10.1/sql/sql_select.cc:1374
#17 0x00007f322b217e56 in JOIN::optimize (this=0x7f31fbc22940) at /data/src/10.1/sql/sql_select.cc:1036
#18 0x00007f322b2204ca in mysql_select (thd=0x7f3204f56070, rref_pointer_array=0x7f3204f5a400, tables=0x7f31fbc22258, wild_num=1, fields=..., conds=0x0, og_num=0, order=0x0, group=0x0, having=0x0, proc_param=0x0, select_options=2147748608, result=0x7f31fbc22920, unit=0x7f3204f59a88, select_lex=0x7f3204f5a188) at /data/src/10.1/sql/sql_select.cc:3437
#19 0x00007f322b21602c in handle_select (thd=0x7f3204f56070, lex=0x7f3204f599c0, result=0x7f31fbc22920, setup_tables_done_option=0) at /data/src/10.1/sql/sql_select.cc:384
#20 0x00007f322b1e6382 in execute_sqlcom_select (thd=0x7f3204f56070, all_tables=0x7f31fbc22258) at /data/src/10.1/sql/sql_parse.cc:5894
#21 0x00007f322b1dc28f in mysql_execute_command (thd=0x7f3204f56070) at /data/src/10.1/sql/sql_parse.cc:2960
#22 0x00007f322b1e9aba in mysql_parse (thd=0x7f3204f56070, rawbuf=0x7f31fbc22088 "SELECT * FROM t2", length=16, parser_state=0x7f322c10d630) at /data/src/10.1/sql/sql_parse.cc:7314
#23 0x00007f322b1d84e4 in dispatch_command (command=COM_QUERY, thd=0x7f3204f56070, packet=0x7f3204ebb071 "SELECT * FROM t2", packet_length=16) at /data/src/10.1/sql/sql_parse.cc:1486
#24 0x00007f322b1d721b in do_command (thd=0x7f3204f56070) at /data/src/10.1/sql/sql_parse.cc:1107
#25 0x00007f322b30ce63 in do_handle_one_connection (thd_arg=0x7f3204f56070) at /data/src/10.1/sql/sql_connect.cc:1350
#26 0x00007f322b30cbc7 in handle_one_connection (arg=0x7f3204f56070) at /data/src/10.1/sql/sql_connect.cc:1262
#27 0x00007f322a8d80a4 in start_thread (arg=0x7f322c10eb00) at pthread_create.c:309
#28 0x00007f3228a9087d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111
--source include/have_partition.inc
CREATE TABLE t1 (f1 INT ) ENGINE=MyISAM;
INSERT INTO t1 VALUES (1),(2);
CREATE TABLE t2 (f2 INT ) ENGINE=MyISAM PARTITION BY RANGE(f2) (PARTITION pmax VALUES LESS THAN MAXVALUE);
INSERT INTO t2 VALUES (8);
CREATE ALGORITHM = MERGE VIEW v AS SELECT f2 FROM t2, t1;
UPDATE v SET f2 = 1;
SELECT * FROM t2;
Also reproducible on current 10.2 and on previous versions of MariaDB.
Not reproducible on current MySQL 5.5 and 5.7.
Alexey Botchkov
made changes -
2016-07-29 09:39
Status
Open
[ 1
]
In Progress
[ 3
]
Elena Stepanova
made changes -
2016-08-02 10:41
Fix Version/s
5.5
[ 15800
]
Fix Version/s
10.0
[ 16000
]
Alexey Botchkov
made changes -
2016-12-19 20:53
Assignee
Alexey Botchkov
[ holyfoot
]
Sergei Golubchik
[ serg
]
Status
In Progress
[ 3
]
In Review
[ 10002
]
Sergei Golubchik
made changes -
2016-12-21 09:55
Assignee
Sergei Golubchik
[ serg
]
Alexey Botchkov
[ holyfoot
]
Status
In Review
[ 10002
]
Stalled
[ 10000
]
Rasmus Johansson (Inactive)
made changes -
2017-02-15 12:49
Sprint
10.2.2-3, 5.5.54
[ 83, 123
]
10.2.2-3, 5.5.54, 5.5.55&10.0.30
[ 83, 123, 138
]
Alexey Botchkov
made changes -
2017-02-21 12:13
Status
Stalled
[ 10000
]
In Progress
[ 3
]
Alexey Botchkov
made changes -
2017-02-21 12:43
Assignee
Alexey Botchkov
[ holyfoot
]
Sergei Golubchik
[ serg
]
Status
In Progress
[ 3
]
In Review
[ 10002
]
Sergei Golubchik
made changes -
2017-02-21 14:18
Assignee
Sergei Golubchik
[ serg
]
Alexey Botchkov
[ holyfoot
]
Status
In Review
[ 10002
]
Stalled
[ 10000
]
Alexey Botchkov
made changes -
2017-02-21 21:56
issue.field.resolutiondate
2017-02-21 21:56:00.0
2017-02-21 21:56:00.58
Alexey Botchkov
made changes -
2017-02-21 21:56
Fix Version/s
5.5.55
[ 22311
]
Fix Version/s
5.5
[ 15800
]
Fix Version/s
10.0
[ 16000
]
Fix Version/s
10.1
[ 16100
]
Resolution
Fixed
[ 1
]
Status
Stalled
[ 10000
]
Closed
[ 6
]
Sergei Golubchik
made changes -
2021-12-06 21:43
Workflow
MariaDB v3
[ 76471
]
MariaDB v4
[ 150653
]
{"report":{"fcp":2566.7000007629395,"ttfb":919.6000003814697,"pageVisibility":"visible","entityId":57467,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"8f1117f9-e2c7-4224-9733-c5fb4ca39e5f","navigationType":0,"readyForUser":2667.6000003814697,"redirectCount":0,"resourceLoadedEnd":3147.2000007629395,"resourceLoadedStart":927.4000005722046,"resourceTiming":[{"duration":793.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":927.4000005722046,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":927.4000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1720.9000005722046,"responseStart":0,"secureConnectionStart":0},{"duration":793.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":927.7000007629395,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":927.7000007629395,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1721.2000007629395,"responseStart":0,"secureConnectionStart":0},{"duration":847,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":927.8000001907349,"connectEnd":927.8000001907349,"connectStart":927.8000001907349,"domainLookupEnd":927.8000001907349,"domainLookupStart":927.8000001907349,"fetchStart":927.8000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":927.8000001907349,"responseEnd":1774.8000001907349,"responseStart":1774.8000001907349,"secureConnectionStart":927.8000001907349},{"duration":1286,"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":928.1000003814697,"connectEnd":928.1000003814697,"connectStart":928.1000003814697,"domainLookupEnd":928.1000003814697,"domainLookupStart":928.1000003814697,"fetchStart":928.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":928.1000003814697,"responseEnd":2214.1000003814697,"responseStart":2214.1000003814697,"secureConnectionStart":928.1000003814697},{"duration":1290.5,"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":928.3000001907349,"connectEnd":928.3000001907349,"connectStart":928.3000001907349,"domainLookupEnd":928.3000001907349,"domainLookupStart":928.3000001907349,"fetchStart":928.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":928.3000001907349,"responseEnd":2218.800000190735,"responseStart":2218.800000190735,"secureConnectionStart":928.3000001907349},{"duration":1291.0999994277954,"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":928.4000005722046,"connectEnd":928.4000005722046,"connectStart":928.4000005722046,"domainLookupEnd":928.4000005722046,"domainLookupStart":928.4000005722046,"fetchStart":928.4000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":928.4000005722046,"responseEnd":2219.5,"responseStart":2219.5,"secureConnectionStart":928.4000005722046},{"duration":1291.6999998092651,"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":928.6000003814697,"connectEnd":928.6000003814697,"connectStart":928.6000003814697,"domainLookupEnd":928.6000003814697,"domainLookupStart":928.6000003814697,"fetchStart":928.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":928.6000003814697,"responseEnd":2220.300000190735,"responseStart":2220.300000190735,"secureConnectionStart":928.6000003814697},{"duration":1297.5999994277954,"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":928.7000007629395,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":928.7000007629395,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":2226.300000190735,"responseStart":0,"secureConnectionStart":0},{"duration":1291.8000001907349,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":929,"connectEnd":929,"connectStart":929,"domainLookupEnd":929,"domainLookupStart":929,"fetchStart":929,"redirectEnd":0,"redirectStart":0,"requestStart":929,"responseEnd":2220.800000190735,"responseStart":2220.800000190735,"secureConnectionStart":929},{"duration":1297.1999998092651,"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":929.2000007629395,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":929.2000007629395,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":2226.4000005722046,"responseStart":0,"secureConnectionStart":0},{"duration":1292.2999992370605,"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":929.2000007629395,"connectEnd":929.2000007629395,"connectStart":929.2000007629395,"domainLookupEnd":929.2000007629395,"domainLookupStart":929.2000007629395,"fetchStart":929.2000007629395,"redirectEnd":0,"redirectStart":0,"requestStart":929.2000007629395,"responseEnd":2221.5,"responseStart":2221.5,"secureConnectionStart":929.2000007629395},{"duration":1934.5999994277954,"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":939.2000007629395,"connectEnd":939.2000007629395,"connectStart":939.2000007629395,"domainLookupEnd":939.2000007629395,"domainLookupStart":939.2000007629395,"fetchStart":939.2000007629395,"redirectEnd":0,"redirectStart":0,"requestStart":939.2000007629395,"responseEnd":2873.800000190735,"responseStart":2873.800000190735,"secureConnectionStart":939.2000007629395},{"duration":2207.9000005722046,"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":939.3000001907349,"connectEnd":939.3000001907349,"connectStart":939.3000001907349,"domainLookupEnd":939.3000001907349,"domainLookupStart":939.3000001907349,"fetchStart":939.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":939.3000001907349,"responseEnd":3147.2000007629395,"responseStart":3147.2000007629395,"secureConnectionStart":939.3000001907349},{"duration":915.5999994277954,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1928.7000007629395,"connectEnd":1928.7000007629395,"connectStart":1928.7000007629395,"domainLookupEnd":1928.7000007629395,"domainLookupStart":1928.7000007629395,"fetchStart":1928.7000007629395,"redirectEnd":0,"redirectStart":0,"requestStart":1928.7000007629395,"responseEnd":2844.300000190735,"responseStart":2844.300000190735,"secureConnectionStart":1928.7000007629395},{"duration":717.5,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":2560.1000003814697,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":2560.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":3277.6000003814697,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":313,"responseStart":919,"responseEnd":935,"domLoading":925,"domInteractive":3203,"domContentLoadedEventStart":3203,"domContentLoadedEventEnd":3270,"domComplete":4016,"loadEventStart":4016,"loadEventEnd":4017,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":3153.1000003814697},{"name":"bigPipe.sidebar-id.end","time":3154},{"name":"bigPipe.activity-panel-pipe-id.start","time":3154.1000003814697},{"name":"bigPipe.activity-panel-pipe-id.end","time":3158.800000190735},{"name":"activityTabFullyLoaded","time":3297.9000005722046}],"measures":[],"correlationId":"cc778e21ee85e3","effectiveType":"4g","downlink":9.4,"rtt":0,"serverDuration":176,"dbReadsTimeInMs":24,"dbConnsTimeInMs":34,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
http://lists.askmonty.org/pipermail/commits/2016-December/010306.html