mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Post-merge fixes.
mysql-test/r/read_only.result: A post-merge fix: update results. server-tools/instance-manager/guardian.cc: Remove initialization of a non-existent member.
This commit is contained in:
@ -89,11 +89,11 @@ select @@global.read_only;
|
|||||||
@@global.read_only
|
@@global.read_only
|
||||||
1
|
1
|
||||||
unlock tables;
|
unlock tables;
|
||||||
set global read_only=0;
|
|
||||||
drop temporary table ttt;
|
drop temporary table ttt;
|
||||||
ERROR 42S02: Unknown table 'ttt'
|
ERROR 42S02: Unknown table 'ttt'
|
||||||
drop temporary table if exists ttt;
|
drop temporary table if exists ttt;
|
||||||
Warnings:
|
Warnings:
|
||||||
Note 1051 Unknown table 'ttt'
|
Note 1051 Unknown table 'ttt'
|
||||||
|
set global read_only=0;
|
||||||
drop table t1,t2;
|
drop table t1,t2;
|
||||||
drop user test@localhost;
|
drop user test@localhost;
|
||||||
|
@ -53,8 +53,7 @@ Guardian::Guardian(Thread_registry *thread_registry_arg,
|
|||||||
:shutdown_requested(FALSE),
|
:shutdown_requested(FALSE),
|
||||||
stopped(FALSE),
|
stopped(FALSE),
|
||||||
thread_registry(thread_registry_arg),
|
thread_registry(thread_registry_arg),
|
||||||
instance_map(instance_map_arg),
|
instance_map(instance_map_arg)
|
||||||
guarded_instances(0)
|
|
||||||
{
|
{
|
||||||
pthread_mutex_init(&LOCK_guardian, 0);
|
pthread_mutex_init(&LOCK_guardian, 0);
|
||||||
pthread_cond_init(&COND_guardian, 0);
|
pthread_cond_init(&COND_guardian, 0);
|
||||||
|
Reference in New Issue
Block a user