Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
b893d347
Commit
b893d347
authored
Dec 12, 2006
by
kostja@bodhi.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge fixes.
parent
bc6e7387
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
mysql-test/r/read_only.result
mysql-test/r/read_only.result
+1
-1
server-tools/instance-manager/guardian.cc
server-tools/instance-manager/guardian.cc
+1
-2
No files found.
mysql-test/r/read_only.result
View file @
b893d347
...
...
@@ -89,11 +89,11 @@ select @@global.read_only;
@@global.read_only
1
unlock tables;
set global read_only=0;
drop temporary table ttt;
ERROR 42S02: Unknown table 'ttt'
drop temporary table if exists ttt;
Warnings:
Note 1051 Unknown table 'ttt'
set global read_only=0;
drop table t1,t2;
drop user test@localhost;
server-tools/instance-manager/guardian.cc
View file @
b893d347
...
...
@@ -53,8 +53,7 @@ Guardian::Guardian(Thread_registry *thread_registry_arg,
:
shutdown_requested
(
FALSE
),
stopped
(
FALSE
),
thread_registry
(
thread_registry_arg
),
instance_map
(
instance_map_arg
),
guarded_instances
(
0
)
instance_map
(
instance_map_arg
)
{
pthread_mutex_init
(
&
LOCK_guardian
,
0
);
pthread_cond_init
(
&
COND_guardian
,
0
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment