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
d1c8dc83
Commit
d1c8dc83
authored
Sep 03, 2007
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb - merge error code(s)
parent
eab642a4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
storage/ndb/src/kernel/blocks/ERROR_codes.txt
storage/ndb/src/kernel/blocks/ERROR_codes.txt
+1
-1
storage/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
storage/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
+1
-1
storage/ndb/test/ndbapi/testIndex.cpp
storage/ndb/test/ndbapi/testIndex.cpp
+1
-1
No files found.
storage/ndb/src/kernel/blocks/ERROR_codes.txt
View file @
d1c8dc83
...
...
@@ -304,7 +304,7 @@ ABORT OF TCKEYREQ
8038 : Simulate API disconnect just after SCAN_TAB_REQ
80
39
: Simulate failure of TransactionBufferMemory allocation for OI lookup
80
52
: Simulate failure of TransactionBufferMemory allocation for OI lookup
8051 : Simulate failure of allocation for saveINDXKEYINFO
...
...
storage/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
View file @
d1c8dc83
...
...
@@ -11840,7 +11840,7 @@ Dbtc::saveINDXKEYINFO(Signal* signal,
const
Uint32
*
src
,
Uint32
len
)
{
if
(
ERROR_INSERTED
(
80
39
)
||
!
indexOp
->
keyInfo
.
append
(
src
,
len
))
{
if
(
ERROR_INSERTED
(
80
52
)
||
!
indexOp
->
keyInfo
.
append
(
src
,
len
))
{
jam
();
// Failed to seize keyInfo, abort transaction
#ifdef VM_TRACE
...
...
storage/ndb/test/ndbapi/testIndex.cpp
View file @
d1c8dc83
...
...
@@ -1386,7 +1386,7 @@ int tcSaveINDX_test(NDBT_Context* ctx, NDBT_Step* step, int inject_err)
int
runBug28804
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
)
{
return
tcSaveINDX_test
(
ctx
,
step
,
80
39
);
return
tcSaveINDX_test
(
ctx
,
step
,
80
52
);
}
int
...
...
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