mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
14 lines
503 B
Text
14 lines
503 B
Text
--echo #
|
|
--echo # MDEV-24815 Show "--allow-suspicious-udfs" state in SYSTEM VARIABLES
|
|
--echo #
|
|
|
|
SELECT @@allow_suspicious_udfs AS EXPECT_0;
|
|
|
|
# Restart the server the server with "--allow-suspicious-udfs" option
|
|
--let $restart_parameters = --allow-suspicious-udfs
|
|
--source include/restart_mysqld.inc
|
|
SELECT @@allow_suspicious_udfs AS EXPECT_1;
|
|
|
|
# Disable "--allow-suspicious-udfs" to restore the original state
|
|
--let $restart_parameters = --skip-allow-suspicious-udfs
|
|
--source include/restart_mysqld.inc
|