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
29dc2696
Commit
29dc2696
authored
Aug 31, 2005
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#12833 corrected parsing of CLUSTERLOG command in ndb_mgm
parent
f1b97218
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
35 deletions
+42
-35
ndb/src/mgmclient/CommandInterpreter.cpp
ndb/src/mgmclient/CommandInterpreter.cpp
+42
-35
No files found.
ndb/src/mgmclient/CommandInterpreter.cpp
View file @
29dc2696
...
...
@@ -1909,47 +1909,54 @@ CommandInterpreter::executeEventReporting(int processId,
return
;
}
BaseString
tmp
(
parameters
);
Vector
<
BaseString
>
spec
;
tmp
.
split
(
spec
,
"="
);
if
(
spec
.
size
()
!=
2
){
ndbout
<<
"Invalid loglevel specification: "
<<
parameters
<<
endl
;
return
;
}
Vector
<
BaseString
>
specs
;
tmp
.
split
(
specs
,
" "
);
spec
[
0
].
trim
().
ndb_toupper
();
int
category
=
ndb_mgm_match_event_category
(
spec
[
0
].
c_str
());
if
(
category
==
NDB_MGM_ILLEGAL_EVENT_CATEGORY
){
if
(
!
convert
(
spec
[
0
].
c_str
(),
category
)
||
category
<
NDB_MGM_MIN_EVENT_CATEGORY
||
category
>
NDB_MGM_MAX_EVENT_CATEGORY
){
ndbout
<<
"Unknown category:
\"
"
<<
spec
[
0
].
c_str
()
<<
"
\"
"
<<
endl
;
return
;
for
(
int
i
=
0
;
i
<
specs
.
size
();
i
++
)
{
Vector
<
BaseString
>
spec
;
specs
[
i
].
split
(
spec
,
"="
);
if
(
spec
.
size
()
!=
2
){
ndbout
<<
"Invalid loglevel specification: "
<<
specs
[
i
]
<<
endl
;
continue
;
}
}
int
level
;
if
(
!
convert
(
spec
[
1
].
c_str
(),
level
))
{
ndbout
<<
"Invalid level: "
<<
spec
[
1
].
c_str
()
<<
endl
;
return
;
}
spec
[
0
].
trim
().
ndb_toupper
();
int
category
=
ndb_mgm_match_event_category
(
spec
[
0
].
c_str
());
if
(
category
==
NDB_MGM_ILLEGAL_EVENT_CATEGORY
){
if
(
!
convert
(
spec
[
0
].
c_str
(),
category
)
||
category
<
NDB_MGM_MIN_EVENT_CATEGORY
||
category
>
NDB_MGM_MAX_EVENT_CATEGORY
){
ndbout
<<
"Unknown category:
\"
"
<<
spec
[
0
].
c_str
()
<<
"
\"
"
<<
endl
;
continue
;
}
}
ndbout
<<
"Executing CLUSTERLOG on node "
<<
processId
<<
flush
;
int
level
;
if
(
!
convert
(
spec
[
1
].
c_str
(),
level
))
{
ndbout
<<
"Invalid level: "
<<
spec
[
1
].
c_str
()
<<
endl
;
continue
;
}
struct
ndb_mgm_reply
reply
;
int
result
;
result
=
ndb_mgm_set_loglevel_clusterlog
(
m_mgmsrv
,
processId
,
(
ndb_mgm_event_category
)
category
,
level
,
&
reply
);
ndbout
<<
"Executing CLUSTERLOG "
<<
spec
[
0
]
<<
"="
<<
spec
[
1
]
<<
" on node "
<<
processId
<<
flush
;
struct
ndb_mgm_reply
reply
;
int
result
;
result
=
ndb_mgm_set_loglevel_clusterlog
(
m_mgmsrv
,
processId
,
(
ndb_mgm_event_category
)
category
,
level
,
&
reply
);
if
(
result
!=
0
)
{
ndbout_c
(
" failed."
);
printError
();
}
else
{
ndbout_c
(
" OK!"
);
}
if
(
result
!=
0
)
{
ndbout_c
(
" failed."
);
printError
();
}
else
{
ndbout_c
(
" OK!"
);
}
}
}
/*****************************************************************************
...
...
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