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.
23 lines
460 B
Text
23 lines
460 B
Text
#
|
|
# MENT-2042 Assertion `bf_aborted()' failed in wsrep::transaction::xa_replay_common()
|
|
#
|
|
|
|
--source include/galera_cluster.inc
|
|
--source include/have_debug_sync.inc
|
|
|
|
--connect node_1a, 127.0.0.1, root, , test, $NODE_MYPORT_1
|
|
|
|
--connection node_1
|
|
--let connection_id = `SELECT CONNECTION_ID()`
|
|
|
|
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY);
|
|
|
|
#
|
|
# Execute XA transaction up to COMMIT
|
|
#
|
|
|
|
--error ER_NOT_SUPPORTED_YET
|
|
XA START 'a';
|
|
|
|
DROP TABLE t1;
|
|
--disconnect node_1a
|