-
Bug
-
-
Blocker
-
Resolution:
Fixed
-
10.5, 10.6, 10.11, 11.0(EOL), 11.1(EOL), 11.2(EOL)
-
-
-
REPLACE with unique key works in some cases, not in other cases:
CREATE OR REPLACE TABLE t1 (
|
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
`M_Number` varchar(30) DEFAULT NULL,
|
`A_Number` varchar(30) DEFAULT NULL,
|
`Type` varchar(255) DEFAULT NULL,
|
`S_Id` varchar(30) DEFAULT NULL,
|
`U_Id` varchar(255) DEFAULT NULL,
|
`IND` varchar(255) DEFAULT NULL,
|
PRIMARY KEY (`id`),
|
UNIQUE `problem_key` (`A_Number`,`S_Id`,`U_Id`,`M_Number`,`Type`,`IND`) USING HASH
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
INSERT INTO t1 (`M_Number`, `A_Number`, `Type`, `S_Id`, `U_Id`, `IND`) VALUES ('00004', '0001009089999', '', 'NETSTES', 'PSIT', 'D');
|
REPLACE INTO t1 (`M_Number`, `A_Number`, `Type`, `S_Id`, `U_Id`, `IND`) VALUES ('00004', '0001009089999', '', 'NETSTES', 'PSIT', 'D');
|
INSERT INTO t1 (`M_Number`, `A_Number`, `Type`, `S_Id`, `U_Id`, `IND`) VALUES ('00004', '0001009089999', '', 'NETSTES', 'PSIT', 'E');
|
# This should not generate a duplicate key error
|
REPLACE INTO t1 (`M_Number`, `A_Number`, `Type`, `S_Id`, `U_Id`, `IND`) VALUES ('00004', '0001009089999', '', 'NETSTES', 'PSIT', 'E');
|
ERROR: Duplicate entry '0001009089999-NETSTES-PSIT-00004--E' for key 'problem_key'
|
|
select * from t1;
|
|
+----+----------+---------------+------+---------+------+------+
|
| id | M_Number | A_Number | Type | S_Id | U_Id | IND |
|
+----+----------+---------------+------+---------+------+------+
|
| 0 | 00004 | 0001009089999 | | NETSTES | PSIT | D |
|
| 2 | 00004 | 0001009089999 | | NETSTES | PSIT | E |
|
+----+----------+---------------+------+---------+------+------+
|
There are two bugs here:
The last REPLACE should replace the third inserted row and not give an error
The first replace should not change the ID to 0
One can get the correct result by removing 'USING HASH' above:
+----+----------+---------------+------+---------+------+------+
|
| id | M_Number | A_Number | Type | S_Id | U_Id | IND |
|
+----+----------+---------------+------+---------+------+------+
|
| 2 | 00004 | 0001009089999 | | NETSTES | PSIT | D |
|
| 4 | 00004 | 0001009089999 | | NETSTES | PSIT | E |
|
+----+----------+---------------+------+---------+------+------+
|
{"report":{"fcp":1245,"ttfb":176.30000019073486,"pageVisibility":"visible","entityId":126451,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"76b9a284-3185-45c8-8ca2-d5c1994f59f3","navigationType":0,"readyForUser":1320,"redirectCount":0,"resourceLoadedEnd":912.1000003814697,"resourceLoadedStart":181.7000002861023,"resourceTiming":[{"duration":509.69999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":181.7000002861023,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":181.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":691.4000000953674,"responseStart":0,"secureConnectionStart":0},{"duration":509.7000002861023,"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":182,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":182,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":691.7000002861023,"responseStart":0,"secureConnectionStart":0},{"duration":518.8999996185303,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":182.10000038146973,"connectEnd":182.10000038146973,"connectStart":182.10000038146973,"domainLookupEnd":182.10000038146973,"domainLookupStart":182.10000038146973,"fetchStart":182.10000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":182.10000038146973,"responseEnd":701,"responseStart":701,"secureConnectionStart":182.10000038146973},{"duration":671.6999998092651,"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":182.30000019073486,"connectEnd":182.30000019073486,"connectStart":182.30000019073486,"domainLookupEnd":182.30000019073486,"domainLookupStart":182.30000019073486,"fetchStart":182.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":182.30000019073486,"responseEnd":854,"responseStart":854,"secureConnectionStart":182.30000019073486},{"duration":675.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":182.60000038146973,"connectEnd":182.60000038146973,"connectStart":182.60000038146973,"domainLookupEnd":182.60000038146973,"domainLookupStart":182.60000038146973,"fetchStart":182.60000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":182.60000038146973,"responseEnd":858,"responseStart":858,"secureConnectionStart":182.60000038146973},{"duration":675.6999998092651,"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":182.80000019073486,"connectEnd":182.80000019073486,"connectStart":182.80000019073486,"domainLookupEnd":182.80000019073486,"domainLookupStart":182.80000019073486,"fetchStart":182.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":182.80000019073486,"responseEnd":858.5,"responseStart":858.5,"secureConnectionStart":182.80000019073486},{"duration":675.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":182.90000009536743,"connectEnd":182.90000009536743,"connectStart":182.90000009536743,"domainLookupEnd":182.90000009536743,"domainLookupStart":182.90000009536743,"fetchStart":182.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":182.90000009536743,"responseEnd":858.8000001907349,"responseStart":858.8000001907349,"secureConnectionStart":182.90000009536743},{"duration":677.3999996185303,"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":183.10000038146973,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":183.10000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":860.5,"responseStart":0,"secureConnectionStart":0},{"duration":676,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":183.30000019073486,"connectEnd":183.30000019073486,"connectStart":183.30000019073486,"domainLookupEnd":183.30000019073486,"domainLookupStart":183.30000019073486,"fetchStart":183.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":183.30000019073486,"responseEnd":859.3000001907349,"responseStart":859.3000001907349,"secureConnectionStart":183.30000019073486},{"duration":677.2000002861023,"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":183.40000009536743,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":183.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":860.6000003814697,"responseStart":0,"secureConnectionStart":0},{"duration":676.2999997138977,"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":183.60000038146973,"connectEnd":183.60000038146973,"connectStart":183.60000038146973,"domainLookupEnd":183.60000038146973,"domainLookupStart":183.60000038146973,"fetchStart":183.60000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":183.60000038146973,"responseEnd":859.9000000953674,"responseStart":859.9000000953674,"secureConnectionStart":183.60000038146973},{"duration":683.5999999046326,"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":184.60000038146973,"connectEnd":184.60000038146973,"connectStart":184.60000038146973,"domainLookupEnd":184.60000038146973,"domainLookupStart":184.60000038146973,"fetchStart":184.60000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":184.60000038146973,"responseEnd":868.2000002861023,"responseStart":868.2000002861023,"secureConnectionStart":184.60000038146973},{"duration":721.3999996185303,"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":189.10000038146973,"connectEnd":189.10000038146973,"connectStart":189.10000038146973,"domainLookupEnd":189.10000038146973,"domainLookupStart":189.10000038146973,"fetchStart":189.10000038146973,"redirectEnd":0,"redirectStart":0,"requestStart":189.10000038146973,"responseEnd":910.5,"responseStart":910.5,"secureConnectionStart":189.10000038146973},{"duration":9.900000095367432,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":856.3000001907349,"connectEnd":856.3000001907349,"connectStart":856.3000001907349,"domainLookupEnd":856.3000001907349,"domainLookupStart":856.3000001907349,"fetchStart":856.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":856.3000001907349,"responseEnd":866.2000002861023,"responseStart":866.2000002861023,"secureConnectionStart":856.3000001907349},{"duration":27.40000009536743,"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":884.7000002861023,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":884.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":912.1000003814697,"responseStart":0,"secureConnectionStart":0},{"duration":522.0999999046326,"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":885.6000003814697,"connectEnd":885.6000003814697,"connectStart":885.6000003814697,"domainLookupEnd":885.6000003814697,"domainLookupStart":885.6000003814697,"fetchStart":885.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":885.6000003814697,"responseEnd":1407.7000002861023,"responseStart":1407.7000002861023,"secureConnectionStart":885.6000003814697},{"duration":530.7000002861023,"initiatorType":"script","name":"https://jira.mariadb.org/s/097ae97cb8fbec7d6ea4bbb1f26955b9-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/js/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.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":886,"connectEnd":886,"connectStart":886,"domainLookupEnd":886,"domainLookupStart":886,"fetchStart":886,"redirectEnd":0,"redirectStart":0,"requestStart":886,"responseEnd":1416.7000002861023,"responseStart":1416.7000002861023,"secureConnectionStart":886},{"duration":340.2000002861023,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":990.5,"connectEnd":990.5,"connectStart":990.5,"domainLookupEnd":990.5,"domainLookupStart":990.5,"fetchStart":990.5,"redirectEnd":0,"redirectStart":0,"requestStart":990.5,"responseEnd":1330.7000002861023,"responseStart":1330.7000002861023,"secureConnectionStart":990.5}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":17,"responseStart":176,"responseEnd":180,"domLoading":179,"domInteractive":1385,"domContentLoadedEventStart":1386,"domContentLoadedEventEnd":1435,"domComplete":2141,"loadEventStart":2141,"loadEventEnd":2143,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1362.5},{"name":"bigPipe.sidebar-id.end","time":1363.3000001907349},{"name":"bigPipe.activity-panel-pipe-id.start","time":1363.5},{"name":"bigPipe.activity-panel-pipe-id.end","time":1366.1000003814697},{"name":"activityTabFullyLoaded","time":1445.6000003814697}],"measures":[],"correlationId":"ff21fb23e62b07","effectiveType":"4g","downlink":9.1,"rtt":0,"serverDuration":96,"dbReadsTimeInMs":13,"dbConnsTimeInMs":22,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}