1#
2# Tables with system versioning should not append keys to wsrep.
3#
4
5--source include/galera_cluster.inc
6--source include/have_innodb.inc
7
8SET @@local.sql_mode='no_field_options';
9CREATE 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;
10INSERT INTO t1 VALUES (1);
11UPDATE t1 SET f1 = 1 WHERE f1 = 1;
12DROP TABLE t1;
13