summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/MDEV-22421.result
blob: 33dc3e449aef2dbd75e8d23d381798c40d12db1f (plain)
1
2
3
4
5
6
7
connection node_2;
connection node_1;
SET @@local.sql_mode='no_field_options';
CREATE TABLE t1 (f1 INT, ROW_START BIGINT UNSIGNED AS ROW START INVISIBLE, ROW_END BIGINT UNSIGNED AS ROW END INVISIBLE, PERIOD FOR SYSTEM_TIME(ROW_START, ROW_END)) WITH SYSTEM VERSIONING ENGINE=InnoDB;
INSERT INTO t1 VALUES (1);
UPDATE t1 SET f1 = 1 WHERE f1 = 1;
DROP TABLE t1;