Type:
Bug
Priority:
Critical
Resolution:
Fixed
Affects Version/s:
None
Component/s:
None
SET optimizer_switch = 'materialization=on,semijoin=on' ;
CREATE TABLE t1 (pk INT , a INT , b INT , PRIMARY KEY (pk)) ENGINE=MyISAM;
INSERT INTO t1 VALUES (1,3,5),(2,4,6);
SELECT * FROM t1 WHERE 8 IN ( SELECT MIN (pk) FROM t1 ) AND ( pk = a OR pk = b );
Starting with the following revision, the query causes an assertion failure:
bzr version-info
revision-id: igor@askmonty.org-20130815235920-io2h7tlypwlbunsp
revno: 3676
branch-nick: 5.3
Version: '5.3.13-MariaDB-debug-log'
mysqld: sql_select.cc:13342: COND* remove_eq_conds(THD*, COND*, Item::cond_result*): Assertion `((Item_cond *) cond)->functype() == ((Item_cond *) new_item)->functype()' failed.
130817 13:20:37 [ERROR] mysqld got signal 6 ;
#7 0x00007f6aef09d192 in __GI___assert_fail (assertion=0xd2f858 "((Item_cond *) cond)->functype() == ((Item_cond *) new_item)->functype()", file=0xd2e97f "sql_select.cc", line=13342, function=0xd31240 "COND* remove_eq_conds(THD*, COND*, Item::cond_result*)") at assert.c:103
#8 0x00000000007275d2 in remove_eq_conds (thd=0x23a18c8, cond=0x7f6ad4036058, cond_value=0x7f6ad40322f8) at sql_select.cc:13341
#9 0x0000000000726fbd in optimize_cond (join=0x7f6ad4032008, conds=0x7f6ad4036058, join_list=0x23a44d0, ignore_on_conds=false, cond_value=0x7f6ad40322f8, cond_equal=0x7f6ad4032418) at sql_select.cc:13128
#10 0x0000000000707ac4 in JOIN::optimize (this=0x7f6ad4032008) at sql_select.cc:1019
#11 0x000000000070ed8f in mysql_select (thd=0x23a18c8, rref_pointer_array=0x23a45b8, tables=0x7f6ad4019198, wild_num=1, fields=..., conds=0x7f6ad4031e10, og_num=0, order=0x0, group=0x0, having=0x0, proc_param=0x0, select_options=2147764736, result=0x7f6ad4031fe8, unit=0x23a3e58, select_lex=0x23a4360) at sql_select.cc:2976
#12 0x0000000000705899 in handle_select (thd=0x23a18c8, lex=0x23a3db8, result=0x7f6ad4031fe8, setup_tables_done_option=0) at sql_select.cc:288
#13 0x0000000000691b72 in execute_sqlcom_select (thd=0x23a18c8, all_tables=0x7f6ad4019198) at sql_parse.cc:5172
#14 0x000000000068893a in mysql_execute_command (thd=0x23a18c8) at sql_parse.cc:2305
#15 0x00000000006945fc in mysql_parse (thd=0x23a18c8, rawbuf=0x7f6ad4018f40 "SELECT * FROM t1 WHERE 8 IN ( SELECT MIN(pk) FROM t1 ) AND ( pk = a OR pk = b )", length=79, found_semicolon=0x7f6aedf207e0) at sql_parse.cc:6173
#16 0x0000000000686057 in dispatch_command (command=COM_QUERY, thd=0x23a18c8, packet=0x241bb29 "SELECT * FROM t1 WHERE 8 IN ( SELECT MIN(pk) FROM t1 ) AND ( pk = a OR pk = b )", packet_length=79) at sql_parse.cc:1243
#17 0x00000000006852c8 in do_command (thd=0x23a18c8) at sql_parse.cc:923
#18 0x0000000000682162 in handle_one_connection (arg=0x23a18c8) at sql_connect.cc:1231
#19 0x00007f6aefc38e9a in start_thread (arg=0x7f6aedf21700) at pthread_create.c:308
#20 0x00007f6aef161cbd in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:112
Before the revision 3676, the query didn't behave quite right, either. It produced the following error and valgrind warnings, although I don't know if they are related to the new assertion failure.
130817 13:31:33 [Warning] Plugin 'MEMORY' will be forced to shutdown
130817 13:31:33 [ERROR] Plugin 'MEMORY' has ref_count=1 after shutdown.
...
==6575== 8 bytes in 1 blocks are indirectly lost in loss record 1 of 7
==6575== at 0x4C2B6CD: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==6575== by 0xBB13F9: my_malloc (my_malloc.c:42)
==6575== by 0x8EF0B2: intern_plugin_lock(st_lex*, st_plugin_int**) (sql_plugin.cc:861)
==6575== by 0x8EF23E: plugin_lock(THD*, st_plugin_int**) (sql_plugin.cc:904)
==6575== by 0x80FB7E: ha_lock_engine(THD*, handlerton const*) (handler.cc:172)
==6575== by 0x730342: create_tmp_table(THD*, TMP_TABLE_PARAM*, List<Item>&, st_order*, bool, bool, unsigned long long, unsigned long long, char*, bool) (sql_select.cc:14324)
==6575== by 0x804994: create_dummy_tmp_table(THD*) (opt_subselect.cc:4998)
==6575== by 0x805155: setup_jtbm_semi_joins(JOIN*, List<TABLE_LIST>*, Item**) (opt_subselect.cc:5171)
==6575== by 0x70D391: JOIN::optimize() (sql_select.cc:1015)
==6575== by 0x7147A6: mysql_select(THD*, Item***, TABLE_LIST*, unsigned int, List<Item>&, Item*, unsigned int, st_order*, st_order*, Item*, st_order*, unsigned long long, select_result*, st_select_lex_unit*, st_select_lex*) (sql_select.cc:2976)
==6575== by 0x70B1E6: handle_select(THD*, st_lex*, select_result*, unsigned long) (sql_select.cc:288)
==6575== by 0x696682: execute_sqlcom_select(THD*, TABLE_LIST*) (sql_parse.cc:5172)
==6575== by 0x68D441: mysql_execute_command(THD*) (sql_parse.cc:2305)
==6575== by 0x6990FC: mysql_parse(THD*, char*, unsigned int, char const**) (sql_parse.cc:6173)
==6575== by 0x68ABE5: dispatch_command(enum_server_command, THD*, char*, unsigned int) (sql_parse.cc:1243)
==6575== by 0x689E83: do_command(THD*) (sql_parse.cc:923)
includes
MDEV-5011
ERROR Plugin 'MEMORY' has ref_count=1 after shutdown for SJM queries.
Closed
{"report":{"fcp":1776.9000000953674,"ttfb":641,"pageVisibility":"visible","entityId":25123,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"a055ad17-6080-4732-b933-e19ba109c421","navigationType":0,"readyForUser":1861.2000000476837,"redirectCount":0,"resourceLoadedEnd":1771.0999999046326,"resourceLoadedStart":646.4000000953674,"resourceTiming":[{"duration":541.8999998569489,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":646.4000000953674,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":646.4000000953674,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1188.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":542.1000001430511,"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":646.5999999046326,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":646.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1188.7000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":599.6999998092651,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":646.9000000953674,"connectEnd":646.9000000953674,"connectStart":646.9000000953674,"domainLookupEnd":646.9000000953674,"domainLookupStart":646.9000000953674,"fetchStart":646.9000000953674,"redirectEnd":0,"redirectStart":0,"requestStart":646.9000000953674,"responseEnd":1246.5999999046326,"responseStart":1246.5999999046326,"secureConnectionStart":646.9000000953674},{"duration":651.9000000953674,"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":647.0999999046326,"connectEnd":647.0999999046326,"connectStart":647.0999999046326,"domainLookupEnd":647.0999999046326,"domainLookupStart":647.0999999046326,"fetchStart":647.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":647.0999999046326,"responseEnd":1299,"responseStart":1299,"secureConnectionStart":647.0999999046326},{"duration":655.5999999046326,"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":647.2000000476837,"connectEnd":647.2000000476837,"connectStart":647.2000000476837,"domainLookupEnd":647.2000000476837,"domainLookupStart":647.2000000476837,"fetchStart":647.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":647.2000000476837,"responseEnd":1302.7999999523163,"responseStart":1302.7999999523163,"secureConnectionStart":647.2000000476837},{"duration":655.7999999523163,"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":647.4000000953674,"connectEnd":647.4000000953674,"connectStart":647.4000000953674,"domainLookupEnd":647.4000000953674,"domainLookupStart":647.4000000953674,"fetchStart":647.4000000953674,"redirectEnd":0,"redirectStart":0,"requestStart":647.4000000953674,"responseEnd":1303.2000000476837,"responseStart":1303.2000000476837,"secureConnectionStart":647.4000000953674},{"duration":655.9000000953674,"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":647.5999999046326,"connectEnd":647.5999999046326,"connectStart":647.5999999046326,"domainLookupEnd":647.5999999046326,"domainLookupStart":647.5999999046326,"fetchStart":647.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":647.5999999046326,"responseEnd":1303.5,"responseStart":1303.5,"secureConnectionStart":647.5999999046326},{"duration":744.2999999523163,"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":647.7999999523163,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":647.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1392.0999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":655.9000000953674,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":648,"connectEnd":648,"connectStart":648,"domainLookupEnd":648,"domainLookupStart":648,"fetchStart":648,"redirectEnd":0,"redirectStart":0,"requestStart":648,"responseEnd":1303.9000000953674,"responseStart":1303.9000000953674,"secureConnectionStart":648},{"duration":744.2000000476837,"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":648.0999999046326,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":648.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1392.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":656.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":648.2000000476837,"connectEnd":648.2000000476837,"connectStart":648.2000000476837,"domainLookupEnd":648.2000000476837,"domainLookupStart":648.2000000476837,"fetchStart":648.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":648.2000000476837,"responseEnd":1304.5,"responseStart":1304.5,"secureConnectionStart":648.2000000476837},{"duration":897.4000000953674,"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":653.5,"connectEnd":653.5,"connectStart":653.5,"domainLookupEnd":653.5,"domainLookupStart":653.5,"fetchStart":653.5,"redirectEnd":0,"redirectStart":0,"requestStart":653.5,"responseEnd":1550.9000000953674,"responseStart":1550.9000000953674,"secureConnectionStart":653.5},{"duration":1108.4000000953674,"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":653.5999999046326,"connectEnd":653.5999999046326,"connectStart":653.5999999046326,"domainLookupEnd":653.5999999046326,"domainLookupStart":653.5999999046326,"fetchStart":653.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":653.5999999046326,"responseEnd":1762,"responseStart":1761.9000000953674,"secureConnectionStart":653.5999999046326},{"duration":164.69999980926514,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1405.4000000953674,"connectEnd":1405.4000000953674,"connectStart":1405.4000000953674,"domainLookupEnd":1405.4000000953674,"domainLookupStart":1405.4000000953674,"fetchStart":1405.4000000953674,"redirectEnd":0,"redirectStart":0,"requestStart":1405.4000000953674,"responseEnd":1570.0999999046326,"responseStart":1570.0999999046326,"secureConnectionStart":1405.4000000953674},{"duration":98.5,"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":1672.5999999046326,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1672.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1771.0999999046326,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":475,"responseStart":641,"responseEnd":646,"domLoading":644,"domInteractive":1925,"domContentLoadedEventStart":1925,"domContentLoadedEventEnd":1980,"domComplete":2124,"loadEventStart":2124,"loadEventEnd":2124,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1904},{"name":"bigPipe.sidebar-id.end","time":1904.7000000476837},{"name":"bigPipe.activity-panel-pipe-id.start","time":1904.7999999523163},{"name":"bigPipe.activity-panel-pipe-id.end","time":1906.2999999523163},{"name":"activityTabFullyLoaded","time":1996.7000000476837}],"measures":[],"correlationId":"5136b974fa89e8","effectiveType":"4g","downlink":9.3,"rtt":0,"serverDuration":100,"dbReadsTimeInMs":13,"dbConnsTimeInMs":21,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
(Me and Sanja have discussed this bug and concluded that the wrong part is a lacking call to fix_fields() in setup_jtbm_subqueries()).