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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
99a28709
Commit
99a28709
authored
Nov 05, 2017
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simple cleanups
- Add 'stage name' to debug output
parent
bce807f7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
sql/sql_class.h
sql/sql_class.h
+3
-2
sql/winservice.c
sql/winservice.c
+6
-5
No files found.
sql/sql_class.h
View file @
99a28709
...
...
@@ -2193,12 +2193,13 @@ class THD :public Statement,
const
char
*
calling_file
,
const
unsigned
int
calling_line
)
{
DBUG_PRINT
(
"THD::enter_stage"
,
(
"%s:%d"
,
calling_file
,
calling_line
));
DBUG_PRINT
(
"THD::enter_stage"
,
(
"%s at %s:%d"
,
stage
->
m_name
,
calling_file
,
calling_line
));
DBUG_ASSERT
(
stage
);
m_current_stage_key
=
stage
->
m_key
;
proc_info
=
stage
->
m_name
;
#if defined(ENABLED_PROFILING)
profiling
.
status_change
(
stage
->
m_name
,
calling_func
,
calling_file
,
profiling
.
status_change
(
proc_info
,
calling_func
,
calling_file
,
calling_line
);
#endif
#ifdef HAVE_PSI_THREAD_INTERFACE
...
...
sql/winservice.c
View file @
99a28709
...
...
@@ -147,12 +147,13 @@ int get_mysql_service_properties(const wchar_t *bin_path,
if
(
numargs
==
2
)
{
/*
There are rare cases where service config does not have
--defaults-filein the binary parth . There services were registered with
plain mysqld --install, the data directory is next to "bin" in this case.
Service name (second parameter) must be MySQL.
There are rare cases where service config does not have
--defaults-file in the binary parth . There services were
registered with plain mysqld --install, the data directory is
next to "bin" in this case. Service name (second parameter)
must be MySQL.
*/
if
(
wcscmp
(
args
[
1
],
L"MySQL"
)
!=
0
)
if
(
wcscmp
(
args
[
1
],
L"MySQL"
)
!=
0
)
goto
end
;
have_inifile
=
FALSE
;
}
...
...
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