mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-4594 - CREATE SERVER crashes embedded
mysql-test/r/servers.result: Added test case for MDEV-4594. mysql-test/t/servers.test: Added test case for MDEV-4594. sql/mysqld.cc: Move servers_init() call to init_server_components(), so it is called for embedded as well. Call servers_free() even if NO_EMBEDDED_ACCESS_CHECKS defined (because we call servers_init() anyway).
This commit is contained in:
8
mysql-test/r/servers.result
Normal file
8
mysql-test/r/servers.result
Normal file
@ -0,0 +1,8 @@
|
||||
#
|
||||
# MDEV-4594 - CREATE SERVER crashes embedded
|
||||
#
|
||||
CREATE SERVER s1 FOREIGN DATA WRAPPER mysql OPTIONS(HOST 'localhost');
|
||||
SELECT * FROM mysql.servers;
|
||||
Server_name Host Db Username Password Port Socket Wrapper Owner
|
||||
s1 localhost 0 mysql
|
||||
DROP SERVER s1;
|
8
mysql-test/t/servers.test
Normal file
8
mysql-test/t/servers.test
Normal file
@ -0,0 +1,8 @@
|
||||
# Generic tests for servers (do not require FEDERATED)
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-4594 - CREATE SERVER crashes embedded
|
||||
--echo #
|
||||
CREATE SERVER s1 FOREIGN DATA WRAPPER mysql OPTIONS(HOST 'localhost');
|
||||
SELECT * FROM mysql.servers;
|
||||
DROP SERVER s1;
|
Reference in New Issue
Block a user