mirror of
https://github.com/MariaDB/server.git
synced 2025-02-14 09:25:35 +01:00
![Monty](/assets/img/avatar_default.png)
- FLUSH GLOBAL STATUS now resets most global_status_vars. At this stage, this is mainly to be used for testing. - FLUSH SESSION STATUS added as an alias for FLUSH STATUS. - FLUSH STATUS does not require any privilege (before required RELOAD). - FLUSH GLOBAL STATUS requires RELOAD privilege. - All global status reset moved to FLUSH GLOBAL STATUS. - Replication semisync status variables are now reset by FLUSH GLOBAL STATUS. - In test cases, the only changes are: - Replace FLUSH STATUS with FLUSH GLOBAL STATUS - Replace FLUSH STATUS with FLUSH STATUS; FLUSH GLOBAL STATUS. This was only done in a few tests where the test was using SHOW STATUS for both local and global variables. - Uptime_since_flush_status is now always provided, independent if ENABLED_PROFILING is enabled when compiling MariaDB. - @@global.Uptime_since_flush_status is reset on FLUSH GLOBAL STATUS and @@session.Uptime_since_flush_status is reset on FLUSH SESSION STATUS. - When connected, @@session.Uptime_since_flush_status is set to 0.
32 lines
1.2 KiB
Text
32 lines
1.2 KiB
Text
--source include/have_udf.inc
|
|
if (!$DIALOG_EXAMPLES_SO) { skip requires dialog_examples.so; }
|
|
if (!$HA_EXAMPLE_SO) { skip requires ha_examples.so; }
|
|
if (!$LIBDAEMON_EXAMPLE_SO) { skip requires libdaemon_examples.so; }
|
|
if (!$EXAMPLE_KEY_MANAGEMENT_SO) { skip requires example_key_management.so; }
|
|
if (`SELECT VERSION() LIKE '%embedded%'`) { skip Disabled for embedded until MDEV-8664 is resolved; }
|
|
|
|
flush global status;
|
|
show status like '%libraries%';
|
|
#--sorted_result
|
|
#select * from information_schema.all_plugins;
|
|
#show status like '%libraries%';
|
|
--replace_result .dll .so
|
|
--replace_column 5 MYSQL_VERSION_ID
|
|
--disable_ps2_protocol
|
|
eval select * from information_schema.all_plugins where plugin_library='$HA_EXAMPLE_SO';
|
|
--enable_ps2_protocol
|
|
show status like '%libraries%';
|
|
--sorted_result
|
|
--replace_result .dll .so
|
|
eval show plugins soname '$HA_EXAMPLE_SO';
|
|
show status like '%libraries%';
|
|
--sorted_result
|
|
--replace_result .dll .so
|
|
show plugins soname like '%example%';
|
|
--replace_result 8 7
|
|
show status like '%libraries%';
|
|
--sorted_result
|
|
--replace_result .dll .so
|
|
eval show plugins soname where library = '$HA_EXAMPLE_SO';
|
|
select variable_value > 10 from information_schema.global_status where variable_name like '%libraries%';
|
|
|