mirror of
https://github.com/MariaDB/server.git
synced 2025-04-23 15:45:33 +02:00

Removed major part of test because XA transactions are not supported in galera on 10.5 branch.
9 lines
305 B
Text
9 lines
305 B
Text
connection node_2;
|
|
connection node_1;
|
|
connect node_1a, 127.0.0.1, root, , test, $NODE_MYPORT_1;
|
|
connection node_1;
|
|
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY);
|
|
XA START 'a';
|
|
ERROR 42000: This version of MariaDB doesn't yet support 'XA transactions with Galera replication'
|
|
DROP TABLE t1;
|
|
disconnect node_1a;
|