mirror of
https://github.com/MariaDB/server.git
synced 2025-11-27 05:41:41 +03:00
Patch fixes two bugs: 1) BEGIN_TIMESTAMP of MYSQL.TRANSACTION_REGISTY is '0-0-0' on replication record insertion 2) BEGIN_TIMESTAMP equals COMMMIT_TIMESTAMP in MYSQL.TRANSACTION_REGISTRY Fixed by calling THD::set_time() at appropriate places
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
--source include/galera_cluster.inc
|
|
|
|
--connect node_3, 127.0.0.1, root, , test, $NODE_MYPORT_3
|
|
|
|
--connection node_1
|
|
create table t1 (a int, s bigint unsigned as row start, e bigint unsigned as row end, period for system_time(s,e)) engine=InnoDB with system versioning;
|
|
insert into t1 (a) values (1),(2);
|
|
|
|
--connection node_2
|
|
insert into t1 (a) values (3),(4);
|
|
select a from t1;
|
|
select count(*) from mysql.transaction_registry where begin_timestamp='0-0-0';
|
|
select count(*) from mysql.transaction_registry where begin_timestamp>=commit_timestamp;
|
|
|
|
--connection node_3
|
|
insert into t1 (a) values (5),(6);
|
|
select a from t1;
|
|
select count(*) from mysql.transaction_registry where begin_timestamp='0-0-0';
|
|
select count(*) from mysql.transaction_registry where begin_timestamp>=commit_timestamp;
|
|
|
|
--connection node_1
|
|
select a from t1;
|
|
select count(*) from mysql.transaction_registry where begin_timestamp='0-0-0';
|
|
select count(*) from mysql.transaction_registry where begin_timestamp>=commit_timestamp;
|
|
|
|
drop table t1;
|
|
|
|
--source include/galera_end.inc
|