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
6e748553
Commit
6e748553
authored
Jun 20, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #19543 Out REDO log on subscription creation during startup, missing error message
- add error message
parent
cc0ea3fc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
storage/ndb/src/kernel/blocks/suma/Suma.cpp
storage/ndb/src/kernel/blocks/suma/Suma.cpp
+15
-0
storage/ndb/src/kernel/error/ndbd_exit_codes.c
storage/ndb/src/kernel/error/ndbd_exit_codes.c
+4
-0
No files found.
storage/ndb/src/kernel/blocks/suma/Suma.cpp
View file @
6e748553
...
@@ -410,7 +410,22 @@ Suma::createSequenceReply(Signal* signal,
...
@@ -410,7 +410,22 @@ Suma::createSequenceReply(Signal* signal,
jam
();
jam
();
if
(
ref
!=
NULL
)
if
(
ref
!=
NULL
)
{
switch
((
UtilSequenceRef
::
ErrorCode
)
ref
->
errorCode
)
{
case
UtilSequenceRef
:
:
NoSuchSequence
:
ndbrequire
(
false
);
case
UtilSequenceRef
:
:
TCError
:
{
char
buf
[
128
];
snprintf
(
buf
,
sizeof
(
buf
),
"Startup failed during sequence creation. TC error %d"
,
ref
->
TCErrorCode
);
progError
(
__LINE__
,
NDBD_EXIT_RESOURCE_ALLOC_ERROR
,
buf
);
}
}
ndbrequire
(
false
);
ndbrequire
(
false
);
}
sendSTTORRY
(
signal
);
sendSTTORRY
(
signal
);
}
}
...
...
storage/ndb/src/kernel/error/ndbd_exit_codes.c
View file @
6e748553
...
@@ -80,6 +80,10 @@ static const ErrStruct errArray[] =
...
@@ -80,6 +80,10 @@ static const ErrStruct errArray[] =
/* this error message is complemented by additional info when generated */
/* this error message is complemented by additional info when generated */
{
NDBD_EXIT_INVALID_CONFIG
,
XCE
,
{
NDBD_EXIT_INVALID_CONFIG
,
XCE
,
"Invalid configuration received from Management Server"
},
"Invalid configuration received from Management Server"
},
{
NDBD_EXIT_RESOURCE_ALLOC_ERROR
,
XCE
,
"Resource allocation error, please review the configuration"
},
/* this error message is complemented by additional info when
/* this error message is complemented by additional info when
generated, such as signal, and text
generated, such as signal, and text
*/
*/
...
...
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