The problem was initially introduced in MariaDB 5.5 by a merge of MySQL 5.5.35.
It is still present in MySQL 5.5, but it's been fixed (or never existed) in MySQL 5.6+.
However, MariaDB has it in all active versions 5.5-10.2.
The degenerate condition "1 AND" in WHERE is not required to get the wrong result, which makes it more generic and hence important problem:
MariaDB [test]> deletefrom `test` where `key1varchar`='value1'AND ( key2int <=1 OR key2int > 1);
Query OK, 1 row affected (0.11 sec)
MariaDB [test]> select * from `test`;
+-------------+---------+
| key1varchar | key2int |
+-------------+---------+
| value1 | 1 |
| value1 | 1000685 |
| value1 | 1003560 |
| value1 | 1004807 |
+-------------+---------+
4 rowsinset (0.00 sec)
Test case
CREATETABLE `test` (
`key1varchar` varchar(14) NOTNULL,
`key2int` int(11) NOTNULLDEFAULT'0',
PRIMARYKEY (`key1varchar`,`key2int`),
KEY `key1varchar` (`key1varchar`),
KEY `key2int` (`key2int`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
insertinto test values ('value1',0),('value1',1),('value1',1000685),('value1',1003560),('value1',1004807);
deletefrom test where `key1varchar`='value1'AND ( key2int <=1 OR key2int > 1);
select * from test;
DROPTABLE test;
Elena Stepanova
added a comment - Thanks for the report and the test case.
The problem was initially introduced in MariaDB 5.5 by a merge of MySQL 5.5.35.
It is still present in MySQL 5.5, but it's been fixed (or never existed) in MySQL 5.6+.
However, MariaDB has it in all active versions 5.5-10.2.
The degenerate condition "1 AND" in WHERE is not required to get the wrong result, which makes it more generic and hence important problem:
MariaDB [test]> DROP TABLE IF EXISTS `test`;
Query OK, 0 rows affected (0.37 sec)
MariaDB [test]> CREATE TABLE `test` (
-> `key1varchar` varchar (14) NOT NULL ,
-> `key2int` int (11) NOT NULL DEFAULT '0' ,
-> PRIMARY KEY (`key1varchar`,`key2int`),
-> KEY `key1varchar` (`key1varchar`),
-> KEY `key2int` (`key2int`)
-> ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Query OK, 0 rows affected (0.77 sec)
MariaDB [test]> insert into `test` values ( 'value1' ,0),( 'value1' ,1),( 'value1' ,1000685),( 'value1' ,1003560),( 'value1' ,1004807);
Query OK, 5 rows affected (0.11 sec)
Records: 5 Duplicates: 0 Warnings: 0
MariaDB [test]> delete from `test` where `key1varchar`= 'value1' AND ( key2int <=1 OR key2int > 1);
Query OK, 1 row affected (0.11 sec)
MariaDB [test]> select * from `test`;
+ -------------+---------+
| key1varchar | key2int |
+ -------------+---------+
| value1 | 1 |
| value1 | 1000685 |
| value1 | 1003560 |
| value1 | 1004807 |
+ -------------+---------+
4 rows in set (0.00 sec)
Test case
CREATE TABLE `test` (
`key1varchar` varchar (14) NOT NULL ,
`key2int` int (11) NOT NULL DEFAULT '0' ,
PRIMARY KEY (`key1varchar`,`key2int`),
KEY `key1varchar` (`key1varchar`),
KEY `key2int` (`key2int`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
insert into test values ( 'value1' ,0),( 'value1' ,1),( 'value1' ,1000685),( 'value1' ,1003560),( 'value1' ,1004807);
delete from test where `key1varchar`= 'value1' AND ( key2int <=1 OR key2int > 1);
select * from test;
DROP TABLE test;
The main difference between when using an InnoDB storage engine and when using a different storage engine, say MyISAM, is that we're using a different query plan. We're making use of an index scan with InnoDB and this leads us to the following selects:
analyze DELETE FROM test
WHERE
`key1varchar`='value1' AND
( key2int <=1 OR key2int > 1);
id select_type table type possible_keys key key_len ref rows r_rows filtered r_filtered Extra
1 SIMPLE test range PRIMARY,key1varchar,key2int PRIMARY 44 NULL 5 1.00 100.00 100.00 Using where
analyze DELETE FROM test_isam
WHERE
`key1varchar`='value1' AND
( key2int <=1 OR key2int > 1);
id select_type table type possible_keys key key_len ref rows r_rows filtered r_filtered Extra
1 SIMPLE test_isam ALL PRIMARY,key1varchar,key2int NULL NULL NULL 5 5.00 100.00 100.00 Using where
As we can see, for the InnoDB table, we're only looking at one row.
A preliminary step through the code indicates a difference when running check_quick_select(). For InnoDB we return a valid option, while MyISAM does not.
Vicențiu Ciorbaru
added a comment - The main difference between when using an InnoDB storage engine and when using a different storage engine, say MyISAM, is that we're using a different query plan. We're making use of an index scan with InnoDB and this leads us to the following selects:
analyze DELETE FROM test
WHERE
`key1varchar`='value1' AND
( key2int <=1 OR key2int > 1);
id select_type table type possible_keys key key_len ref rows r_rows filtered r_filtered Extra
1 SIMPLE test range PRIMARY,key1varchar,key2int PRIMARY 44 NULL 5 1.00 100.00 100.00 Using where
analyze DELETE FROM test_isam
WHERE
`key1varchar`='value1' AND
( key2int <=1 OR key2int > 1);
id select_type table type possible_keys key key_len ref rows r_rows filtered r_filtered Extra
1 SIMPLE test_isam ALL PRIMARY,key1varchar,key2int NULL NULL NULL 5 5.00 100.00 100.00 Using where
As we can see, for the InnoDB table, we're only looking at one row.
A preliminary step through the code indicates a difference when running check_quick_select(). For InnoDB we return a valid option, while MyISAM does not.
SELECT is not affected because for SELECT we're using a query plan that uses ref access:
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref PRIMARY PRIMARY 44 const 1 Using where; Using index
I think the problem is reproducible when range access is not reducible to ref but that would require a bigger table.
Sergei Petrunia
added a comment - SELECT is not affected because for SELECT we're using a query plan that uses ref access:
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref PRIMARY PRIMARY 44 const 1 Using where; Using index
I think the problem is reproducible when range access is not reducible to ref but that would require a bigger table.
Fix pushed into 5.5 tree (from there, it will be merged to 10.x versions). ebial@navista.fr, thanks for taking time to report this!
Sergei Petrunia
added a comment - Fix pushed into 5.5 tree (from there, it will be merged to 10.x versions).
ebial@navista.fr , thanks for taking time to report this!
People
Sergei Petrunia
ebial@navista.fr
Votes:
0Vote for this issue
Watchers:
6Start watching this issue
Dates
Created:
Updated:
Resolved:
Git Integration
Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.
{"report":{"fcp":2835.0999994277954,"ttfb":362.69999980926514,"pageVisibility":"visible","entityId":57055,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"e939934b-ea21-4db8-9401-9be38559e9ff","navigationType":0,"readyForUser":2795.8999996185303,"redirectCount":0,"resourceLoadedEnd":2212.199999809265,"resourceLoadedStart":379.69999980926514,"resourceTiming":[{"duration":94.19999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":379.69999980926514,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":379.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":473.8999996185303,"responseStart":0,"secureConnectionStart":0},{"duration":99.10000038146973,"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":379.8999996185303,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":379.8999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":479,"responseStart":0,"secureConnectionStart":0},{"duration":1178.4000005722046,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":380.0999994277954,"connectEnd":380.0999994277954,"connectStart":380.0999994277954,"domainLookupEnd":380.0999994277954,"domainLookupStart":380.0999994277954,"fetchStart":380.0999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":490.0999994277954,"responseEnd":1558.5,"responseStart":527.3999996185303,"secureConnectionStart":380.0999994277954},{"duration":1831.9000005722046,"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":380.29999923706055,"connectEnd":486.5999994277954,"connectStart":486.5999994277954,"domainLookupEnd":486.5999994277954,"domainLookupStart":486.5999994277954,"fetchStart":380.29999923706055,"redirectEnd":0,"redirectStart":0,"requestStart":489.8999996185303,"responseEnd":2212.199999809265,"responseStart":524.5,"secureConnectionStart":486.5999994277954},{"duration":158,"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":380.5,"connectEnd":380.5,"connectStart":380.5,"domainLookupEnd":380.5,"domainLookupStart":380.5,"fetchStart":380.5,"redirectEnd":0,"redirectStart":0,"requestStart":490.19999980926514,"responseEnd":538.5,"responseStart":525.6999998092651,"secureConnectionStart":380.5},{"duration":244.5999994277954,"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":380.69999980926514,"connectEnd":380.69999980926514,"connectStart":380.69999980926514,"domainLookupEnd":380.69999980926514,"domainLookupStart":380.69999980926514,"fetchStart":380.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":524.0999994277954,"responseEnd":625.2999992370605,"responseStart":574.1999998092651,"secureConnectionStart":380.69999980926514},{"duration":243.19999980926514,"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":381.19999980926514,"connectEnd":381.19999980926514,"connectStart":381.19999980926514,"domainLookupEnd":381.19999980926514,"domainLookupStart":381.19999980926514,"fetchStart":381.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":523.5999994277954,"responseEnd":624.3999996185303,"responseStart":572.5999994277954,"secureConnectionStart":381.19999980926514},{"duration":138.69999980926514,"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":381.5999994277954,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":381.5999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":520.2999992370605,"responseStart":0,"secureConnectionStart":0},{"duration":243.80000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":382.0999994277954,"connectEnd":382.0999994277954,"connectStart":382.0999994277954,"domainLookupEnd":382.0999994277954,"domainLookupStart":382.0999994277954,"fetchStart":382.0999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":524.1999998092651,"responseEnd":625.8999996185303,"responseStart":615.5,"secureConnectionStart":382.0999994277954},{"duration":138.5,"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":382.3999996185303,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":382.3999996185303,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":520.8999996185303,"responseStart":0,"secureConnectionStart":0},{"duration":245.69999980926514,"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":382.5999994277954,"connectEnd":382.5999994277954,"connectStart":382.5999994277954,"domainLookupEnd":382.5999994277954,"domainLookupStart":382.5999994277954,"fetchStart":382.5999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":524.3999996185303,"responseEnd":628.2999992370605,"responseStart":620.0999994277954,"secureConnectionStart":382.5999994277954},{"duration":1661.9000005722046,"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":389.79999923706055,"connectEnd":389.79999923706055,"connectStart":389.79999923706055,"domainLookupEnd":389.79999923706055,"domainLookupStart":389.79999923706055,"fetchStart":389.79999923706055,"redirectEnd":0,"redirectStart":0,"requestStart":746.2999992370605,"responseEnd":2051.699999809265,"responseStart":1840.6999998092651,"secureConnectionStart":389.79999923706055},{"duration":1662,"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":394.5999994277954,"connectEnd":394.5999994277954,"connectStart":394.5999994277954,"domainLookupEnd":394.5999994277954,"domainLookupStart":394.5999994277954,"fetchStart":394.5999994277954,"redirectEnd":0,"redirectStart":0,"requestStart":1048.2999992370605,"responseEnd":2056.5999994277954,"responseStart":2049.2999992370605,"secureConnectionStart":394.5999994277954},{"duration":762.8999996185303,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1733.5,"connectEnd":1733.5,"connectStart":1733.5,"domainLookupEnd":1733.5,"domainLookupStart":1733.5,"fetchStart":1733.5,"redirectEnd":0,"redirectStart":0,"requestStart":2208.7999992370605,"responseEnd":2496.3999996185303,"responseStart":2436.0999994277954,"secureConnectionStart":1733.5}],"fetchStart":0,"domainLookupStart":97,"domainLookupEnd":153,"connectStart":154,"connectEnd":173,"secureConnectionStart":162,"requestStart":175,"responseStart":362,"responseEnd":393,"domLoading":375,"domInteractive":2898,"domContentLoadedEventStart":2898,"domContentLoadedEventEnd":2974,"domComplete":3863,"loadEventStart":3863,"loadEventEnd":3864,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":2860.3999996185303},{"name":"bigPipe.sidebar-id.end","time":2861.199999809265},{"name":"bigPipe.activity-panel-pipe-id.start","time":2861.3999996185303},{"name":"bigPipe.activity-panel-pipe-id.end","time":2865.3999996185303},{"name":"activityTabFullyLoaded","time":3033.199999809265}],"measures":[],"correlationId":"c9c21a8360ca0a","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":112,"dbReadsTimeInMs":13,"dbConnsTimeInMs":23,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
Thanks for the report and the test case.
The problem was initially introduced in MariaDB 5.5 by a merge of MySQL 5.5.35.
It is still present in MySQL 5.5, but it's been fixed (or never existed) in MySQL 5.6+.
However, MariaDB has it in all active versions 5.5-10.2.
The degenerate condition "1 AND" in WHERE is not required to get the wrong result, which makes it more generic and hence important problem:
Records: 5 Duplicates: 0 Warnings: 0
Query OK, 1 row affected (0.11 sec)
| key1varchar | key2int |
| value1 | 1 |
| value1 | 1000685 |
| value1 | 1003560 |
| value1 | 1004807 |
Test case