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
46e57973
Commit
46e57973
authored
Aug 31, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
corrected some erroneous ndb error messages
parent
8d0275b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
ndb/src/ndbapi/ndberror.c
ndb/src/ndbapi/ndberror.c
+4
-6
No files found.
ndb/src/ndbapi/ndberror.c
View file @
46e57973
...
...
@@ -55,9 +55,6 @@ typedef struct ErrorBundle {
#define NI ndberror_cl_function_not_implemented
#define UE ndberror_cl_unknown_error_code
static
const
char
REDO_BUFFER_MSG
[]
=
"REDO log buffers overloaded, consult online manual (increase RedoBuffer, and|or decrease TimeBetweenLocalCheckpoints, and|or increase NoOfFragmentLogFiles)"
;
static
const
char
*
empty_string
=
""
;
/*
...
...
@@ -164,8 +161,9 @@ ErrorBundle ErrorCodes[] = {
{
830
,
TR
,
"Out of add fragment operation records"
},
{
873
,
TR
,
"Out of attrinfo records for scan in tuple manager"
},
{
1217
,
TR
,
"Out of operation records in local data manager (increase MaxNoOfLocalOperations)"
},
{
1220
,
TR
,
REDO_BUFFER_MSG
},
{
1220
,
TR
,
"REDO log files overloaded, consult online manual (decrease TimeBetweenLocalCheckpoints, and|or increase NoOfFragmentLogFiles)"
},
{
1222
,
TR
,
"Out of transaction markers in LQH"
},
{
1224
,
TR
,
"Out of Send Buffer space in LQH"
},
{
4021
,
TR
,
"Out of Send Buffer space in NDB API"
},
{
4022
,
TR
,
"Out of Send Buffer space in NDB API"
},
{
4032
,
TR
,
"Out of Send Buffer space in NDB API"
},
...
...
@@ -194,10 +192,10 @@ ErrorBundle ErrorCodes[] = {
/**
* OverloadError
*/
{
410
,
OL
,
REDO_BUFFER_MSG
},
{
410
,
OL
,
"REDO log files overloaded, consult online manual (decrease TimeBetweenLocalCheckpoints, and|or increase NoOfFragmentLogFiles)"
},
{
677
,
OL
,
"Index UNDO buffers overloaded (increase UndoIndexBuffer)"
},
{
891
,
OL
,
"Data UNDO buffers overloaded (increase UndoDataBuffer)"
},
{
1221
,
OL
,
REDO_BUFFER_MSG
},
{
1221
,
OL
,
"REDO buffers overloaded, consult online manual (increase RedoBuffer)"
},
{
4006
,
OL
,
"Connect failure - out of connection objects (increase MaxNoOfConcurrentTransactions)"
},
...
...
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