I believe this issue can be simplified to the following test case:
CREATETABLE accounts_svt (
id SERIAL PRIMARYKEY,
nameVARCHAR(255),
amount INT
) WITH SYSTEM VERSIONING;
CREATETABLE accounts_tp (
id SERIAL PRIMARYKEY,
nameVARCHAR(255),
amount INT,
start_trxid BIGINT UNSIGNED GENERATED ALWAYS AS ROW START INVISIBLE,
end_trxid BIGINT UNSIGNED GENERATED ALWAYS AS ROW END INVISIBLE,
PERIOD FOR SYSTEM_TIME(start_trxid, end_trxid)
) WITH SYSTEM VERSIONING;
BEGIN;
INSERTINTO accounts_svt (name, amount)
VALUES ("Smith", 400),
("Orson", 300),
("Serio", 500),
("Wallace", 200),
("March", 600),
("Douglas", 100);
INSERTINTO accounts_tp (name, amount)
VALUES ("Smith", 400),
("Orson", 300),
("Serio", 500),
("Wallace", 200),
("March", 600),
("Douglas", 100);
COMMIT;
BEGIN;
UPDATE accounts_svt
SET amount = 1000
WHERE id = 1
OR id = 3;
UPDATE accounts_tp
SET amount = 1000
WHERE id = 1
OR id = 3;
COMMIT;
SELECT * FROM mysql.transaction_registry;
SELECT *
FROM accounts_svt
FOR SYSTEM_TIME
FROM'2021-10-27 20:10'
TO'2038-01-19 03:14:07.999999';
SELECT *
FROM accounts_tp
FOR SYSTEM_TIME
FROM'2021-10-27 20:10'
TO'2038-01-19 03:14:07.999999';
The final queries using FROM .. TO .. return different results for system-versioned tables and transaction-precise tables:
MariaDB [test]> SELECT *
-> FROM accounts_svt
-> FOR SYSTEM_TIME
-> FROM'2021-10-27 20:10'
-> TO'2038-01-19 03:14:07.999999';
+----+---------+--------+
| id | name | amount |
+----+---------+--------+
| 1 | Smith | 400 |
| 1 | Smith | 1000 |
| 2 | Orson | 300 |
| 3 | Serio | 500 |
| 3 | Serio | 1000 |
| 4 | Wallace | 200 |
| 5 | March | 600 |
| 6 | Douglas | 100 |
+----+---------+--------+
8 rowsinset (0.000 sec)
MariaDB [test]> SELECT *
-> FROM accounts_tp
-> FOR SYSTEM_TIME
-> FROM'2021-10-27 20:10'
-> TO'2038-01-19 03:14:07.999999';
+----+---------+--------+
| id | name | amount |
+----+---------+--------+
| 1 | Smith | 400 |
| 2 | Orson | 300 |
| 3 | Serio | 500 |
| 4 | Wallace | 200 |
| 5 | March | 600 |
| 6 | Douglas | 100 |
+----+---------+--------+
6 rowsinset (0.001 sec)
Geoff Montee (Inactive)
added a comment - I believe this issue can be simplified to the following test case:
CREATE TABLE accounts_svt (
id SERIAL PRIMARY KEY ,
name VARCHAR (255),
amount INT
) WITH SYSTEM VERSIONING;
CREATE TABLE accounts_tp (
id SERIAL PRIMARY KEY ,
name VARCHAR (255),
amount INT ,
start_trxid BIGINT UNSIGNED GENERATED ALWAYS AS ROW START INVISIBLE,
end_trxid BIGINT UNSIGNED GENERATED ALWAYS AS ROW END INVISIBLE,
PERIOD FOR SYSTEM_TIME(start_trxid, end_trxid)
) WITH SYSTEM VERSIONING;
BEGIN ;
INSERT INTO accounts_svt ( name , amount)
VALUES ( "Smith" , 400),
( "Orson" , 300),
( "Serio" , 500),
( "Wallace" , 200),
( "March" , 600),
( "Douglas" , 100);
INSERT INTO accounts_tp ( name , amount)
VALUES ( "Smith" , 400),
( "Orson" , 300),
( "Serio" , 500),
( "Wallace" , 200),
( "March" , 600),
( "Douglas" , 100);
COMMIT ;
BEGIN ;
UPDATE accounts_svt
SET amount = 1000
WHERE id = 1
OR id = 3;
UPDATE accounts_tp
SET amount = 1000
WHERE id = 1
OR id = 3;
COMMIT ;
SELECT * FROM mysql.transaction_registry;
SELECT *
FROM accounts_svt
FOR SYSTEM_TIME
FROM '2021-10-27 20:10'
TO '2038-01-19 03:14:07.999999' ;
SELECT *
FROM accounts_tp
FOR SYSTEM_TIME
FROM '2021-10-27 20:10'
TO '2038-01-19 03:14:07.999999' ;
The final queries using FROM .. TO .. return different results for system-versioned tables and transaction-precise tables:
MariaDB [test]> SELECT *
-> FROM accounts_svt
-> FOR SYSTEM_TIME
-> FROM '2021-10-27 20:10'
-> TO '2038-01-19 03:14:07.999999' ;
+ ----+---------+--------+
| id | name | amount |
+ ----+---------+--------+
| 1 | Smith | 400 |
| 1 | Smith | 1000 |
| 2 | Orson | 300 |
| 3 | Serio | 500 |
| 3 | Serio | 1000 |
| 4 | Wallace | 200 |
| 5 | March | 600 |
| 6 | Douglas | 100 |
+ ----+---------+--------+
8 rows in set (0.000 sec)
MariaDB [test]> SELECT *
-> FROM accounts_tp
-> FOR SYSTEM_TIME
-> FROM '2021-10-27 20:10'
-> TO '2038-01-19 03:14:07.999999' ;
+ ----+---------+--------+
| id | name | amount |
+ ----+---------+--------+
| 1 | Smith | 400 |
| 2 | Orson | 300 |
| 3 | Serio | 500 |
| 4 | Wallace | 200 |
| 5 | March | 600 |
| 6 | Douglas | 100 |
+ ----+---------+--------+
6 rows in set (0.001 sec)
Nikita Malyavin
added a comment - - edited Yes, it seems that transactional and timestamp-based versioning produce different results.
I have created the test to show the result differences
source suite/versioning/engines.inc;
source suite/versioning/common.inc;
SELECT TIMESTAMP '9999-12-31 23:59:59';
CREATE TABLE t(
x INT,
start_timestamp TIMESTAMP(6) NOT NULL,
end_timestamp TIMESTAMP(6) NOT NULL DEFAULT now()
);
insert into t values (1, TIMESTAMP '2021-10-27 20:10', TIMESTAMP '2038-01-19 03:14:07.999999');
select * from t;
select * from t WHERE start_timestamp >= TIMESTAMP '0001-01-01 00:00:00' and end_timestamp < TIMESTAMP '9999-12-31 23:59:59';
drop table t;
replace_result $sys_datatype_expl SYS_DATATYPE;
eval create or replace table t(
id SERIAL PRIMARY KEY,
x INT,
start_timestamp $sys_datatype_expl AS ROW START,
end_timestamp $sys_datatype_expl AS ROW END,
PERIOD FOR SYSTEM_TIME(start_timestamp, end_timestamp)
) WITH SYSTEM VERSIONING;
INSERT INTO t(x)
VALUES (400),
(300),
(500),
(200),
(600),
(100);
UPDATE t
SET x = 999
WHERE id = 1
OR id = 3;
select id,x from t;
--sorted_result
SELECT id, x
FROM t
FOR SYSTEM_TIME
FROM '2021-10-27 20:10'
TO '2038-01-19 03:14:07.999999';
--sorted_result
SELECT id,x
FROM t
FOR SYSTEM_TIME
BETWEEN '2021-10-27 20:10'
AND '2038-01-19 03:14:07.999999';
#select * from mysql.transaction_registry;
drop table t;
--source suite/versioning/common_finish.inc
produces:
versioning.bug 'innodb,timestamp' [ pass ] 16
versioning.bug 'innodb,trx_id' [ fail ]
Test ended at 2021-11-02 00:16:31
CURRENT_TEST: versioning.bug
--- /home/nik/mariadb/mysql-test/suite/versioning/r/bug.result 2021-11-02 00:16:24.799553838 +0300
+++ /home/nik/mariadb/mysql-test/suite/versioning/r/bug.reject 2021-11-02 00:16:31.282928508 +0300
@@ -47,10 +47,8 @@
TO '2038-01-19 03:14:07.999999';
id x
1 400
-1 999
2 300
3 500
-3 999
4 200
5 600
6 100
mysqltest: Result length mismatch
GeoffMontee I have just got familiar with MDEV-16226. If transaction-based versioning will be redesigned like explained there, the problem should go
Nikita Malyavin
added a comment - GeoffMontee I have just got familiar with MDEV-16226 . If transaction-based versioning will be redesigned like explained there, the problem should go
People
Aleksey Midenkov
Geoff Montee (Inactive)
Votes:
0Vote for this issue
Watchers:
4Start watching this issue
Dates
Created:
Updated:
Git Integration
Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.
{"report":{"fcp":1764,"ttfb":528,"pageVisibility":"visible","entityId":104419,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"8c8e06f8-4b46-4b47-a099-5ce3a820c1e9","navigationType":0,"readyForUser":1945.5999999046326,"redirectCount":0,"resourceLoadedEnd":1627.5,"resourceLoadedStart":534.7000000476837,"resourceTiming":[{"duration":327.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":534.7000000476837,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":534.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":862.2000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":327.5,"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":535.0999999046326,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":535.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":862.5999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":678,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":535.2999999523163,"connectEnd":535.2999999523163,"connectStart":535.2999999523163,"domainLookupEnd":535.2999999523163,"domainLookupStart":535.2999999523163,"fetchStart":535.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":866.7999999523163,"responseEnd":1213.2999999523163,"responseStart":885.7999999523163,"secureConnectionStart":535.2999999523163},{"duration":888.3999998569489,"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":535.4000000953674,"connectEnd":535.4000000953674,"connectStart":535.4000000953674,"domainLookupEnd":535.4000000953674,"domainLookupStart":535.4000000953674,"fetchStart":535.4000000953674,"redirectEnd":0,"redirectStart":0,"requestStart":872,"responseEnd":1423.7999999523163,"responseStart":916.0999999046326,"secureConnectionStart":535.4000000953674},{"duration":371.30000019073486,"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":535.5999999046326,"connectEnd":535.5999999046326,"connectStart":535.5999999046326,"domainLookupEnd":535.5999999046326,"domainLookupStart":535.5999999046326,"fetchStart":535.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":872.5,"responseEnd":906.9000000953674,"responseStart":901.9000000953674,"secureConnectionStart":535.5999999046326},{"duration":370.7000000476837,"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":535.7999999523163,"connectEnd":535.7999999523163,"connectStart":535.7999999523163,"domainLookupEnd":535.7999999523163,"domainLookupStart":535.7999999523163,"fetchStart":535.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":872.4000000953674,"responseEnd":906.5,"responseStart":900.7999999523163,"secureConnectionStart":535.7999999523163},{"duration":371.09999990463257,"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":536,"connectEnd":536,"connectStart":536,"domainLookupEnd":536,"domainLookupStart":536,"fetchStart":536,"redirectEnd":0,"redirectStart":0,"requestStart":875.2999999523163,"responseEnd":907.0999999046326,"responseStart":902.9000000953674,"secureConnectionStart":536},{"duration":336.09999990463257,"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":536.2000000476837,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":536.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":872.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":373.2999999523163,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":536.5,"connectEnd":536.5,"connectStart":536.5,"domainLookupEnd":536.5,"domainLookupStart":536.5,"fetchStart":536.5,"redirectEnd":0,"redirectStart":0,"requestStart":876.4000000953674,"responseEnd":909.7999999523163,"responseStart":907.4000000953674,"secureConnectionStart":536.5},{"duration":336.7000000476837,"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":536.5999999046326,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":536.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":873.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":373.7999999523163,"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":536.7000000476837,"connectEnd":536.7000000476837,"connectStart":536.7000000476837,"domainLookupEnd":536.7000000476837,"domainLookupStart":536.7000000476837,"fetchStart":536.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":877.7999999523163,"responseEnd":910.5,"responseStart":908.0999999046326,"secureConnectionStart":536.7000000476837},{"duration":897.7999999523163,"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":543.7000000476837,"connectEnd":543.7000000476837,"connectStart":543.7000000476837,"domainLookupEnd":543.7000000476837,"domainLookupStart":543.7000000476837,"fetchStart":543.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":1396.7999999523163,"responseEnd":1441.5,"responseStart":1437.7999999523163,"secureConnectionStart":543.7000000476837},{"duration":1083.2000000476837,"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":544.2999999523163,"connectEnd":544.2999999523163,"connectStart":544.2999999523163,"domainLookupEnd":544.2999999523163,"domainLookupStart":544.2999999523163,"fetchStart":544.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":1614.0999999046326,"responseEnd":1627.5,"responseStart":1626.7000000476837,"secureConnectionStart":544.2999999523163},{"duration":251.29999995231628,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1352.5,"connectEnd":1352.5,"connectStart":1352.5,"domainLookupEnd":1352.5,"domainLookupStart":1352.5,"fetchStart":1352.5,"redirectEnd":0,"redirectStart":0,"requestStart":1565,"responseEnd":1603.7999999523163,"responseStart":1602.2000000476837,"secureConnectionStart":1352.5},{"duration":457.2000000476837,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1695,"connectEnd":1695,"connectStart":1695,"domainLookupEnd":1695,"domainLookupStart":1695,"fetchStart":1695,"redirectEnd":0,"redirectStart":0,"requestStart":2113.0999999046326,"responseEnd":2152.2000000476837,"responseStart":2151.2000000476837,"secureConnectionStart":1695},{"duration":537.4000000953674,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1750.7999999523163,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1750.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":2288.2000000476837,"responseStart":0,"secureConnectionStart":0}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":325,"responseStart":528,"responseEnd":540,"domLoading":532,"domInteractive":2120,"domContentLoadedEventStart":2120,"domContentLoadedEventEnd":2279,"domComplete":3147,"loadEventStart":3147,"loadEventEnd":3147,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":2077.9000000953674},{"name":"bigPipe.sidebar-id.end","time":2078.7000000476837},{"name":"bigPipe.activity-panel-pipe-id.start","time":2078.9000000953674},{"name":"bigPipe.activity-panel-pipe-id.end","time":2085.4000000953674},{"name":"activityTabFullyLoaded","time":2306.5999999046326}],"measures":[],"correlationId":"6636e9f9d128cf","effectiveType":"4g","downlink":10,"rtt":0,"serverDuration":121,"dbReadsTimeInMs":16,"dbConnsTimeInMs":25,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
I believe this issue can be simplified to the following test case:
The final queries using FROM .. TO .. return different results for system-versioned tables and transaction-precise tables:
| 1 | Smith | 400 |
| 1 | Smith | 1000 |
| 2 | Orson | 300 |
| 3 | Serio | 500 |
| 3 | Serio | 1000 |
| 4 | Wallace | 200 |
| 5 | March | 600 |
| 6 | Douglas | 100 |
| 1 | Smith | 400 |
| 2 | Orson | 300 |
| 3 | Serio | 500 |
| 4 | Wallace | 200 |
| 5 | March | 600 |
| 6 | Douglas | 100 |