mirror of
https://github.com/MariaDB/server.git
synced 2025-07-08 17:02:21 +03:00
98 lines
2.4 KiB
Plaintext
98 lines
2.4 KiB
Plaintext
|
|
# MDEV#5534: mysql_tzinfo_to_sql generates wrong query
|
|
#
|
|
# Testing wsrep_replicate_myisam variable.
|
|
SELECT @@session.wsrep_replicate_myisam;
|
|
ERROR HY000: Variable 'wsrep_replicate_myisam' is a GLOBAL variable
|
|
SELECT @@global.wsrep_replicate_myisam;
|
|
@@global.wsrep_replicate_myisam
|
|
0
|
|
SET SESSION wsrep_replicate_myisam= ON;
|
|
ERROR HY000: Variable 'wsrep_replicate_myisam' is a GLOBAL variable and should be set with SET GLOBAL
|
|
SET GLOBAL wsrep_replicate_myisam= ON;
|
|
SET GLOBAL wsrep_replicate_myisam= OFF;
|
|
#
|
|
# MDEV#5790: SHOW GLOBAL STATUS LIKE does not show the correct list of
|
|
# variables when using "_"
|
|
#
|
|
CALL mtr.add_suppression("WSREP: Could not open saved state file for reading.*");
|
|
SHOW VARIABLES LIKE 'wsrep%';
|
|
Variable_name Value
|
|
wsrep_osu_method #
|
|
wsrep_auto_increment_control #
|
|
wsrep_causal_reads #
|
|
wsrep_certify_nonpk #
|
|
wsrep_cluster_address #
|
|
wsrep_cluster_name #
|
|
wsrep_convert_lock_to_trx #
|
|
wsrep_data_home_dir #
|
|
wsrep_dbug_option #
|
|
wsrep_debug #
|
|
wsrep_desync #
|
|
wsrep_drupal_282555_workaround #
|
|
wsrep_forced_binlog_format #
|
|
wsrep_load_data_splitting #
|
|
wsrep_log_conflicts #
|
|
wsrep_max_ws_rows #
|
|
wsrep_max_ws_size #
|
|
wsrep_mysql_replication_bundle #
|
|
wsrep_node_address #
|
|
wsrep_node_incoming_address #
|
|
wsrep_node_name #
|
|
wsrep_notify_cmd #
|
|
wsrep_on #
|
|
wsrep_provider #
|
|
wsrep_provider_options #
|
|
wsrep_recover #
|
|
wsrep_replicate_myisam #
|
|
wsrep_retry_autocommit #
|
|
wsrep_slave_threads #
|
|
wsrep_sst_auth #
|
|
wsrep_sst_donor #
|
|
wsrep_sst_donor_rejects_queries #
|
|
wsrep_sst_method #
|
|
wsrep_sst_receive_address #
|
|
wsrep_start_position #
|
|
|
|
SHOW VARIABLES LIKE 'wsrep_%';
|
|
Variable_name Value
|
|
wsrep_osu_method #
|
|
wsrep_auto_increment_control #
|
|
wsrep_causal_reads #
|
|
wsrep_certify_nonpk #
|
|
wsrep_cluster_address #
|
|
wsrep_cluster_name #
|
|
wsrep_convert_lock_to_trx #
|
|
wsrep_data_home_dir #
|
|
wsrep_dbug_option #
|
|
wsrep_debug #
|
|
wsrep_desync #
|
|
wsrep_drupal_282555_workaround #
|
|
wsrep_forced_binlog_format #
|
|
wsrep_load_data_splitting #
|
|
wsrep_log_conflicts #
|
|
wsrep_max_ws_rows #
|
|
wsrep_max_ws_size #
|
|
wsrep_mysql_replication_bundle #
|
|
wsrep_node_address #
|
|
wsrep_node_incoming_address #
|
|
wsrep_node_name #
|
|
wsrep_notify_cmd #
|
|
wsrep_on #
|
|
wsrep_provider #
|
|
wsrep_provider_options #
|
|
wsrep_recover #
|
|
wsrep_replicate_myisam #
|
|
wsrep_retry_autocommit #
|
|
wsrep_slave_threads #
|
|
wsrep_sst_auth #
|
|
wsrep_sst_donor #
|
|
wsrep_sst_donor_rejects_queries #
|
|
wsrep_sst_method #
|
|
wsrep_sst_receive_address #
|
|
wsrep_start_position #
|
|
# Should show nothing.
|
|
SHOW VARIABLES LIKE 'x';
|
|
Variable_name Value
|
|
# End of test.
|