Create a dataset:
create table ten(a int);
|
insert into ten values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
|
create table one_k(a int);
|
insert into one_k select A.a + B.a* 10 + C.a * 100 from ten A, ten B, ten C;
|
create table one_k2 as select * from one_k;
|
set histogram_size=100;
|
set use_stat_tables='preferably';
|
set optimizer_use_condition_selectivity=4;
|
analyze table one_k persistent for all;
|
analyze table one_k2 persistent for all;
|
Let's see what histograms give us
explain extended select * from one_k A where A.a < 40;
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------+
|
| 1 | SIMPLE | A | ALL | NULL | NULL | NULL | NULL | 1000 | 4.95 | Using where |
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------+
|
explain extended select * from one_k2 B where B.a < 100;
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------+
|
| 1 | SIMPLE | B | ALL | NULL | NULL | NULL | NULL | 1000 | 9.90 | Using where |
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------+
|
The numbers looks ok.
Now, let's try a join:
explain extended select * from one_k A, one_k2 B where A.a < 40 and B.a < 100;
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------------------------------------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------------------------------------------+
|
| 1 | SIMPLE | A | ALL | NULL | NULL | NULL | NULL | 1000 | 4.95 | Using where |
|
| 1 | SIMPLE | B | ALL | NULL | NULL | NULL | NULL | 1000 | 9.90 | Using where; Using join buffer (flat, BNL join) |
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------------------------------------------+
|
Looks ok. Now, let's add a condition.
explain extended select * from one_k A, one_k2 B where A.a < 40 and B.a < 100 and B.a=A.a;
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------------------------------------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------------------------------------------+
|
| 1 | SIMPLE | A | ALL | NULL | NULL | NULL | NULL | 1000 | 4.95 | Using where |
|
| 1 | SIMPLE | B | ALL | NULL | NULL | NULL | NULL | 1000 | 100.00 | Using where; Using join buffer (flat, BNL join) |
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------------------------------------------+
|
And filtered% becomes 100%. It used to be 9.90%, we have added another condition into WHERE and now the optimizer expects the condition to be less selective! This looks wrong.
- relates to
-
MDEV-6325
EITS: wrong selectivity for REF(t1.key=t0.col) AND COND(t0.col)
-
-
Closed
{"report":{"fcp":1109.6999998092651,"ttfb":183.19999980926514,"pageVisibility":"visible","entityId":34100,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"704e3def-0c2c-4ed4-8d04-2efa0c83f714","navigationType":0,"readyForUser":1198.5999999046326,"redirectCount":0,"resourceLoadedEnd":1562.0999999046326,"resourceLoadedStart":191.19999980926514,"resourceTiming":[{"duration":396.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":191.19999980926514,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":191.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":587.6999998092651,"responseStart":0,"secureConnectionStart":0},{"duration":396.40000009536743,"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":191.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":191.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":587.9000000953674,"responseStart":0,"secureConnectionStart":0},{"duration":405.6000003814697,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":191.69999980926514,"connectEnd":191.69999980926514,"connectStart":191.69999980926514,"domainLookupEnd":191.69999980926514,"domainLookupStart":191.69999980926514,"fetchStart":191.69999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":191.69999980926514,"responseEnd":597.3000001907349,"responseStart":597.3000001907349,"secureConnectionStart":191.69999980926514},{"duration":471.2999997138977,"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":191.90000009536743,"connectEnd":191.90000009536743,"connectStart":191.90000009536743,"domainLookupEnd":191.90000009536743,"domainLookupStart":191.90000009536743,"fetchStart":191.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":191.90000009536743,"responseEnd":663.1999998092651,"responseStart":663.1999998092651,"secureConnectionStart":191.90000009536743},{"duration":475.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":192,"connectEnd":192,"connectStart":192,"domainLookupEnd":192,"domainLookupStart":192,"fetchStart":192,"redirectEnd":0,"redirectStart":0,"requestStart":192,"responseEnd":667.6999998092651,"responseStart":667.6999998092651,"secureConnectionStart":192},{"duration":477.40000009536743,"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":192.19999980926514,"connectEnd":192.19999980926514,"connectStart":192.19999980926514,"domainLookupEnd":192.19999980926514,"domainLookupStart":192.19999980926514,"fetchStart":192.19999980926514,"redirectEnd":0,"redirectStart":0,"requestStart":192.19999980926514,"responseEnd":669.5999999046326,"responseStart":669.5999999046326,"secureConnectionStart":192.19999980926514},{"duration":481.5,"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":192.30000019073486,"connectEnd":192.30000019073486,"connectStart":192.30000019073486,"domainLookupEnd":192.30000019073486,"domainLookupStart":192.30000019073486,"fetchStart":192.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":192.30000019073486,"responseEnd":673.8000001907349,"responseStart":673.6999998092651,"secureConnectionStart":192.30000019073486},{"duration":580.5,"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":192.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":192.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":773,"responseStart":0,"secureConnectionStart":0},{"duration":483.30000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":192.59999990463257,"connectEnd":192.59999990463257,"connectStart":192.59999990463257,"domainLookupEnd":192.59999990463257,"domainLookupStart":192.59999990463257,"fetchStart":192.59999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":192.59999990463257,"responseEnd":675.9000000953674,"responseStart":675.9000000953674,"secureConnectionStart":192.59999990463257},{"duration":580.3999996185303,"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":192.80000019073486,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":192.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":773.1999998092651,"responseStart":0,"secureConnectionStart":0},{"duration":485.09999990463257,"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":193,"connectEnd":193,"connectStart":193,"domainLookupEnd":193,"domainLookupStart":193,"fetchStart":193,"redirectEnd":0,"redirectStart":0,"requestStart":193,"responseEnd":678.0999999046326,"responseStart":678.0999999046326,"secureConnectionStart":193},{"duration":867.1999998092651,"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":193.90000009536743,"connectEnd":193.90000009536743,"connectStart":193.90000009536743,"domainLookupEnd":193.90000009536743,"domainLookupStart":193.90000009536743,"fetchStart":193.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":193.90000009536743,"responseEnd":1061.0999999046326,"responseStart":1061.0999999046326,"secureConnectionStart":193.90000009536743},{"duration":1368.1999998092651,"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":193.90000009536743,"connectEnd":193.90000009536743,"connectStart":193.90000009536743,"domainLookupEnd":193.90000009536743,"domainLookupStart":193.90000009536743,"fetchStart":193.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":193.90000009536743,"responseEnd":1562.0999999046326,"responseStart":1562.0999999046326,"secureConnectionStart":193.90000009536743},{"duration":308.19999980926514,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":804.3000001907349,"connectEnd":804.3000001907349,"connectStart":804.3000001907349,"domainLookupEnd":804.3000001907349,"domainLookupStart":804.3000001907349,"fetchStart":804.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":804.3000001907349,"responseEnd":1112.5,"responseStart":1112.5,"secureConnectionStart":804.3000001907349}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":18,"responseStart":183,"responseEnd":189,"domLoading":188,"domInteractive":1609,"domContentLoadedEventStart":1609,"domContentLoadedEventEnd":1669,"domComplete":2106,"loadEventStart":2107,"loadEventEnd":2107,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1565.9000000953674},{"name":"bigPipe.sidebar-id.end","time":1566.8000001907349},{"name":"bigPipe.activity-panel-pipe-id.start","time":1567},{"name":"bigPipe.activity-panel-pipe-id.end","time":1570},{"name":"activityTabFullyLoaded","time":1688.6999998092651}],"measures":[],"correlationId":"846cde3d727131","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":101,"dbReadsTimeInMs":11,"dbConnsTimeInMs":20,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
Look at the code near this comment:
If the field f from the table is equal to a field from one the
earlier joined tables then the selectivity of the range conditions
over the field f must be discounted.
Maybe, this is the cause of this bug?