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
e28ea98a
Commit
e28ea98a
authored
Mar 09, 2007
by
tomas@poseidon.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge poseidon.mysql.com:/home/tomas/mysql-5.0-telco-gca
into poseidon.mysql.com:/home/tomas/mysql-5.0-ndb-clean
parents
322b535a
839f5829
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
ndb/src/ndbapi/NdbDictionaryImpl.cpp
ndb/src/ndbapi/NdbDictionaryImpl.cpp
+4
-0
ndb/src/ndbapi/ndberror.c
ndb/src/ndbapi/ndberror.c
+2
-0
No files found.
ndb/src/ndbapi/NdbDictionaryImpl.cpp
View file @
e28ea98a
...
@@ -880,6 +880,7 @@ NdbDictInterface::dictSignal(NdbApiSignal* signal,
...
@@ -880,6 +880,7 @@ NdbDictInterface::dictSignal(NdbApiSignal* signal,
r
=
m_transporter
->
sendSignal
(
signal
,
aNodeId
);
r
=
m_transporter
->
sendSignal
(
signal
,
aNodeId
);
}
}
if
(
r
!=
0
){
if
(
r
!=
0
){
m_error
.
code
=
4007
;
m_transporter
->
unlock_mutex
();
m_transporter
->
unlock_mutex
();
continue
;
continue
;
}
}
...
@@ -903,7 +904,10 @@ NdbDictInterface::dictSignal(NdbApiSignal* signal,
...
@@ -903,7 +904,10 @@ NdbDictInterface::dictSignal(NdbApiSignal* signal,
* Handle error codes
* Handle error codes
*/
*/
if
(
m_waiter
.
m_state
==
WAIT_NODE_FAILURE
)
if
(
m_waiter
.
m_state
==
WAIT_NODE_FAILURE
)
{
m_error
.
code
=
4013
;
continue
;
continue
;
}
if
(
m_waiter
.
m_state
==
WST_WAIT_TIMEOUT
)
if
(
m_waiter
.
m_state
==
WST_WAIT_TIMEOUT
)
{
{
...
...
ndb/src/ndbapi/ndberror.c
View file @
e28ea98a
...
@@ -137,10 +137,12 @@ ErrorBundle ErrorCodes[] = {
...
@@ -137,10 +137,12 @@ ErrorBundle ErrorCodes[] = {
/**
/**
* Unknown result
* Unknown result
*/
*/
{
4007
,
UR
,
"Send to ndbd node failed"
},
{
4008
,
UR
,
"Receive from NDB failed"
},
{
4008
,
UR
,
"Receive from NDB failed"
},
{
4009
,
UR
,
"Cluster Failure"
},
{
4009
,
UR
,
"Cluster Failure"
},
{
4012
,
UR
,
{
4012
,
UR
,
"Request ndbd time-out, maybe due to high load or communication problems"
},
"Request ndbd time-out, maybe due to high load or communication problems"
},
{
4013
,
UR
,
"Request timed out in waiting for node failure"
},
{
4024
,
UR
,
{
4024
,
UR
,
"Time-out, most likely caused by simple read or cluster failure"
},
"Time-out, most likely caused by simple read or cluster failure"
},
...
...
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