mirror of
https://github.com/MariaDB/server.git
synced 2025-04-12 02:05:34 +02:00
13 lines
344 B
Text
13 lines
344 B
Text
--source include/galera_cluster.inc
|
|
|
|
--connection node_1
|
|
#
|
|
# Below should not cause nodes to be inconsistent (they could if we
|
|
# allow TOI as some error are ignored on applier
|
|
#
|
|
--error ER_NOT_SUPPORTED_YET
|
|
CREATE TABLE t ENGINE=InnoDB WITH SYSTEM VERSIONING AS SELECT 1 AS i;
|
|
|
|
--connection node_2
|
|
--error ER_NO_SUCH_TABLE
|
|
SHOW CREATE TABLE t;
|