mariadb/mysql-test/suite/galera_sr/t/MENT-2042.test
Julius Goryavsky 96040fbd53 galera: correction for MENT-2042 test
Removed major part of test because XA transactions
are not supported in galera on 10.5 branch.
2025-02-12 11:30:15 +01:00

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