mirror of
https://github.com/MariaDB/server.git
synced 2025-12-01 17:39:21 +03:00
* include/galera_cluster.inc : Configures galera cluster with 2 nodes. * include/galera_init.inc : Opens named connection with all the nodes. * include/galera_end.inc : Closes all the connections. * include/galera_connect.inc : Opens a named connection with a single node. * include/galera_diff.inc : Runs a specified SQL query on all the nodes and diffs the output.
15 lines
432 B
Plaintext
15 lines
432 B
Plaintext
--source include/have_wsrep.inc
|
|
--source include/have_innodb.inc
|
|
|
|
--echo #
|
|
--echo # MDEV-4222 : Assertion `( ((global_system_variables.wsrep_on) &&
|
|
--echo # (thd && thd->variables.wsrep_on)) && srep_emulate_bin_log)
|
|
--echo # || mysql_bin_log .is_open()' fails on SAVEPOINT with
|
|
--echo # disabled wsrep_provider
|
|
--echo #
|
|
|
|
START TRANSACTION WITH CONSISTENT SNAPSHOT;
|
|
SAVEPOINT A;
|
|
|
|
--echo End of test.
|