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
e382a0fb
Commit
e382a0fb
authored
Sep 12, 2005
by
tulin@dl145c.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1
into dl145c.mysql.com:/home/ndbdev/tomas/mysql-5.0
parents
fa2cb2ae
f80e113d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
6 deletions
+5
-6
mysql-test/r/rpl_slave_status.result
mysql-test/r/rpl_slave_status.result
+1
-1
mysql-test/t/rpl_slave_status.test
mysql-test/t/rpl_slave_status.test
+3
-1
ndb/include/util/Parser.hpp
ndb/include/util/Parser.hpp
+1
-1
ndb/src/mgmapi/mgmapi.cpp
ndb/src/mgmapi/mgmapi.cpp
+0
-3
No files found.
mysql-test/r/rpl_slave_status.result
View file @
e382a0fb
...
...
@@ -19,7 +19,7 @@ flush privileges;
stop slave;
start slave;
show slave status;
Slave_IO_State
Connecting to master
Slave_IO_State
#
Master_Host 127.0.0.1
Master_User rpl
Master_Port MASTER_MYPORT
...
...
mysql-test/t/rpl_slave_status.test
View file @
e382a0fb
...
...
@@ -23,7 +23,9 @@ connection slave;
stop
slave
;
start
slave
;
--
replace_result
$MASTER_MYPORT
MASTER_MYPORT
--
replace_column
7
# 8 # 9 # 22 # 23 #
# Column 1 is replaced, since the output can be either
# "Connecting to master" or "Waiting for master update"
--
replace_column
1
# 7 # 8 # 9 # 22 # 23 #
--
vertical_results
show
slave
status
;
...
...
ndb/include/util/Parser.hpp
View file @
e382a0fb
...
...
@@ -285,7 +285,7 @@ template<class T>
inline
void
Parser
<
T
>::
setBreakOnInvalidArg
(
bool
v
){
impl
->
m_breakOnInvalidArg
;
impl
->
m_breakOnInvalidArg
=
v
;
}
#endif
ndb/src/mgmapi/mgmapi.cpp
View file @
e382a0fb
...
...
@@ -678,12 +678,10 @@ ndb_mgm_get_status(NdbMgmHandle handle)
Vector
<
BaseString
>
split
;
tmp
.
split
(
split
,
":"
);
if
(
split
.
size
()
!=
2
){
abort
();
return
NULL
;
}
if
(
!
(
split
[
0
].
trim
()
==
"nodes"
)){
abort
();
return
NULL
;
}
...
...
@@ -731,7 +729,6 @@ ndb_mgm_get_status(NdbMgmHandle handle)
if
(
i
+
1
!=
noOfNodes
){
free
(
state
);
abort
();
return
NULL
;
}
...
...
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