mirror of
https://github.com/zebrajr/server.git
synced 2025-12-06 12:20:40 +01:00
Merged lp:maria/maria-10.0-galera up to revision 3879. Added a new functions to handler API to forcefully abort_transaction, producing fake_trx_id, get_checkpoint and set_checkpoint for XA. These were added for future possiblity to add more storage engines that could use galera replication.
9 lines
267 B
Plaintext
9 lines
267 B
Plaintext
set @start_value = @@wsrep_on;
|
|
set @@global.wsrep_on=ON;
|
|
set @@global.wsrep_on=OFF;
|
|
set @@global.wsrep_on=1;
|
|
set @@global.wsrep_on=0;
|
|
SET @@global.wsrep_on = -1;
|
|
ERROR 42000: Variable 'wsrep_on' can't be set to the value of '-1'
|
|
set @@global.wsrep_on = @start_value;
|