mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
fa81a82e7f
Added missing DBUG_RETURN statements (in mysqldump.c) Added missing enums Fixed a lot of wrong DBUG_PRINT() statements, some of which could cause crashes Removed usage of %lld and %p in printf strings as these are not portable or produces different results on different systems.
26 lines
805 B
Text
26 lines
805 B
Text
SHOW VARIABLES LIKE 'server_id';
|
|
Variable_name Value
|
|
server_id 1
|
|
SHOW INSTANCES;
|
|
instance_name state
|
|
mysqld1 XXXXX
|
|
mysqld2 offline
|
|
Killing the process...
|
|
Sleeping...
|
|
Success: the process was restarted.
|
|
Success: server is ready to accept connection on socket.
|
|
|
|
--------------------------------------------------------------------
|
|
-- Test for BUG#12751
|
|
--------------------------------------------------------------------
|
|
START INSTANCE mysqld2;
|
|
Success: the process has been started.
|
|
Killing the process...
|
|
Sleeping...
|
|
Success: the process was restarted.
|
|
Success: server is ready to accept connection on socket.
|
|
SHOW INSTANCE STATUS mysqld1;
|
|
instance_name state version_number version mysqld_compatible
|
|
mysqld1 online VERSION_NUMBER VERSION no
|
|
STOP INSTANCE mysqld2;
|
|
Success: the process has been stopped.
|