mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge branch '10.3' into 10.4
This commit is contained in:
@ -296,6 +296,23 @@ select * from mysql.plugin WHERE name='unexisting_plugin';
|
||||
--error ER_SP_DOES_NOT_EXIST
|
||||
UNINSTALL PLUGIN unexisting_plugin;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-26323 use-after-poison issue of MariaDB server
|
||||
--echo #
|
||||
|
||||
--replace_regex /library '.*[\\/].(dll|so)' [(].*[)]/library '.so'/
|
||||
--error ER_CANT_OPEN_LIBRARY
|
||||
INSTALL PLUGIN DEALLOCATE SONAME '';
|
||||
|
||||
--replace_regex /library '.*[\\/]x.(dll|so)' [(].*[)]/library 'x.so'/
|
||||
--error ER_CANT_OPEN_LIBRARY
|
||||
INSTALL PLUGIN DEALLOCATE SONAME 'x';
|
||||
|
||||
--replace_regex /library '.*[\\/]xx.(dll|so)' [(].*[)]/library 'xx.so'/
|
||||
--error ER_CANT_OPEN_LIBRARY
|
||||
INSTALL PLUGIN DEALLOCATE SONAME 'xx';
|
||||
|
||||
|
||||
--echo # End of 10.2 tests
|
||||
|
||||
--source include/install_plugin_if_exists.inc
|
||||
|
Reference in New Issue
Block a user