Type:
Technical task
Priority:
Major
Resolution:
Fixed
Affects Version/s:
None
Sprint:
10.2.0-5, 10.2.0-6, 10.2.0-7, 10.2.0-8, 10.2.2-1, 10.2.2-2, 10.2.2-3, 10.2.2-4
The sliding window defined by RANGE BETWEEN N FOLLOWING and N PRECEDING does not add/remove rows in the correct order.
Example:
insert into t1 values
( 1 , 0, 1),
( 2 , 0, 2),
( 3 , 1, 4),
( 4 , 1, 8),
( 5 , 2, 32),
( 6 , 2, 64),
( 7 , 2, 128),
( 8 , 2, 16);
select pk, a, b,
bit_or(b) over (partition by a order by pk ROWS BETWEEN 1 PRECEDING AND 1 FOLLOWING) as bit_or
from t1;
pk a b bit_or
1 0 1 3
2 0 2 3
3 1 4 12
4 1 8 12
5 2 32 96
6 2 64 224
7 2 128 176
8 2 16 48
The issue lies within the last partition. The removal of elements from the window is wrong. It removes an element 1 row after the one that should be removed.
.....
5 2 32 96 // OK (32 | 64) = 96
6 2 64 224 // OK (32 | 64 | 128) = 224
7 2 128 176 // NOT OK. Should be (64 | 128 | 16) = 208. Instead it is: (32 | 128 | 16).
8 2 16 48 // Again NOT OK. Should be (128 | 16) = 144. Instead it is: (32 | 16)
.....
The problem lies in the fact that the removal of elements from the sliding window is done incorectly.
from [32, 64, 128] , we should add the row containing 16 and remove the row containing 32. Instead, when calling the remove() function for the window function, the current item points to row with the value of 64. Thus we remove 64 and get [32, 128, 16] .
Again the same problem continues for the next row. Instead of removing the value 64, we are removing the value 128 (the row after the correct value).
{"report":{"fcp":1303.4000005722046,"ttfb":549.6999998092651,"pageVisibility":"visible","entityId":56098,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"e06e55ee-1ca8-4866-bcc6-498693b3d777","navigationType":0,"readyForUser":1372.6000003814697,"redirectCount":0,"resourceLoadedEnd":982.6999998092651,"resourceLoadedStart":555.6999998092651,"resourceTiming":[{"duration":247.30000019073486,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":555.6999998092651,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":555.6999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":803,"responseStart":0,"secureConnectionStart":0},{"duration":247.39999961853027,"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":555.9000005722046,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":555.9000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":803.3000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":256.9000005722046,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":556.1999998092651,"connectEnd":556.1999998092651,"connectStart":556.1999998092651,"domainLookupEnd":556.1999998092651,"domainLookupStart":556.1999998092651,"fetchStart":556.1999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":556.1999998092651,"responseEnd":813.1000003814697,"responseStart":813.1000003814697,"secureConnectionStart":556.1999998092651},{"duration":283.6000003814697,"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":556.3000001907349,"connectEnd":556.3000001907349,"connectStart":556.3000001907349,"domainLookupEnd":556.3000001907349,"domainLookupStart":556.3000001907349,"fetchStart":556.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":556.3000001907349,"responseEnd":839.9000005722046,"responseStart":839.9000005722046,"secureConnectionStart":556.3000001907349},{"duration":287.3999996185303,"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":556.6000003814697,"connectEnd":556.6000003814697,"connectStart":556.6000003814697,"domainLookupEnd":556.6000003814697,"domainLookupStart":556.6000003814697,"fetchStart":556.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":556.6000003814697,"responseEnd":844,"responseStart":844,"secureConnectionStart":556.6000003814697},{"duration":287.69999980926514,"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":556.8000001907349,"connectEnd":556.8000001907349,"connectStart":556.8000001907349,"domainLookupEnd":556.8000001907349,"domainLookupStart":556.8000001907349,"fetchStart":556.8000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":556.8000001907349,"responseEnd":844.5,"responseStart":844.5,"secureConnectionStart":556.8000001907349},{"duration":288,"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":556.9000005722046,"connectEnd":556.9000005722046,"connectStart":556.9000005722046,"domainLookupEnd":556.9000005722046,"domainLookupStart":556.9000005722046,"fetchStart":556.9000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":556.9000005722046,"responseEnd":844.9000005722046,"responseStart":844.9000005722046,"secureConnectionStart":556.9000005722046},{"duration":289.1000003814697,"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":557.1999998092651,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":557.1999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":846.3000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":288.0999994277954,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":557.4000005722046,"connectEnd":557.4000005722046,"connectStart":557.4000005722046,"domainLookupEnd":557.4000005722046,"domainLookupStart":557.4000005722046,"fetchStart":557.4000005722046,"redirectEnd":0,"redirectStart":0,"requestStart":557.4000005722046,"responseEnd":845.5,"responseStart":845.5,"secureConnectionStart":557.4000005722046},{"duration":288.80000019073486,"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":557.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":557.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":846.3000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":288.5,"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":557.6999998092651,"connectEnd":557.6999998092651,"connectStart":557.6999998092651,"domainLookupEnd":557.6999998092651,"domainLookupStart":557.6999998092651,"fetchStart":557.6999998092651,"redirectEnd":0,"redirectStart":0,"requestStart":557.6999998092651,"responseEnd":846.1999998092651,"responseStart":846.1999998092651,"secureConnectionStart":557.6999998092651},{"duration":295.19999980926514,"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":558.5,"connectEnd":558.5,"connectStart":558.5,"domainLookupEnd":558.5,"domainLookupStart":558.5,"fetchStart":558.5,"redirectEnd":0,"redirectStart":0,"requestStart":558.5,"responseEnd":853.6999998092651,"responseStart":853.6999998092651,"secureConnectionStart":558.5},{"duration":424.19999980926514,"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":558.5,"connectEnd":558.5,"connectStart":558.5,"domainLookupEnd":558.5,"domainLookupStart":558.5,"fetchStart":558.5,"redirectEnd":0,"redirectStart":0,"requestStart":558.5,"responseEnd":982.6999998092651,"responseStart":982.6999998092651,"secureConnectionStart":558.5},{"duration":223.39999961853027,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1055.6000003814697,"connectEnd":1055.6000003814697,"connectStart":1055.6000003814697,"domainLookupEnd":1055.6000003814697,"domainLookupStart":1055.6000003814697,"fetchStart":1055.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":1055.6000003814697,"responseEnd":1279,"responseStart":1279,"secureConnectionStart":1055.6000003814697},{"duration":127.80000019073486,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1280.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1280.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1408.3000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":181.69999980926514,"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":1303.3000001907349,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1303.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1485,"responseStart":0,"secureConnectionStart":0},{"duration":182.5,"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":1304.1000003814697,"connectEnd":1304.1000003814697,"connectStart":1304.1000003814697,"domainLookupEnd":1304.1000003814697,"domainLookupStart":1304.1000003814697,"fetchStart":1304.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":1304.1000003814697,"responseEnd":1486.6000003814697,"responseStart":1486.6000003814697,"secureConnectionStart":1304.1000003814697}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":14,"responseStart":549,"responseEnd":551,"domLoading":553,"domInteractive":1438,"domContentLoadedEventStart":1438,"domContentLoadedEventEnd":1480,"domComplete":1840,"loadEventStart":1840,"loadEventEnd":1842,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1410.1999998092651},{"name":"bigPipe.sidebar-id.end","time":1411.1000003814697},{"name":"bigPipe.activity-panel-pipe-id.start","time":1411.3000001907349},{"name":"bigPipe.activity-panel-pipe-id.end","time":1414.6999998092651},{"name":"activityTabFullyLoaded","time":1488.5}],"measures":[],"correlationId":"a0e0111a40fb3e","effectiveType":"4g","downlink":9,"rtt":0,"serverDuration":84,"dbReadsTimeInMs":8,"dbConnsTimeInMs":15,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}