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
99b9aa34
Commit
99b9aa34
authored
Aug 13, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix for error insert 5038,
timeout in abort handling with more than 128 operations
parent
073af429
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
+11
-5
No files found.
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
View file @
99b9aa34
...
...
@@ -65,6 +65,7 @@
#include <signaldata/DictTabInfo.hpp>
#include <NdbOut.hpp>
#include <DebuggerNames.hpp>
// Use DEBUG to print messages that should be
// seen only when we debug the product
...
...
@@ -260,6 +261,7 @@ void Dbtc::execCONTINUEB(Signal* signal)
tcConnectptr
.
i
=
Tdata0
;
apiConnectptr
.
i
=
Tdata1
;
ptrCheckGuard
(
apiConnectptr
,
capiConnectFilesize
,
apiConnectRecord
);
apiConnectptr
.
p
->
counter
--
;
sendAbortedAfterTimeout
(
signal
,
1
);
return
;
case
TcContinueB
:
:
ZHANDLE_FAILED_API_NODE_REMOVE_MARKERS
:
...
...
@@ -6039,7 +6041,8 @@ void Dbtc::timeOutFoundLab(Signal* signal, Uint32 TapiConPtr)
<<
" H'"
<<
apiConnectptr
.
p
->
transid
[
1
]
<<
"] "
<<
dec
<<
"Time-out in state = "
<<
apiConnectptr
.
p
->
apiConnectstate
<<
" apiConnectptr.i = "
<<
apiConnectptr
.
i
<<
" - exec: "
<<
apiConnectptr
.
p
->
m_exec_flag
);
<<
" - exec: "
<<
apiConnectptr
.
p
->
m_exec_flag
<<
" - place: "
<<
c_apiConTimer_line
[
apiConnectptr
.
i
]);
switch
(
apiConnectptr
.
p
->
apiConnectstate
)
{
case
CS_STARTED
:
if
(
apiConnectptr
.
p
->
lqhkeyreqrec
==
apiConnectptr
.
p
->
lqhkeyconfrec
){
...
...
@@ -6300,11 +6303,10 @@ void Dbtc::sendAbortedAfterTimeout(Signal* signal, int Tcheck)
warningEvent
(
buf
);
ndbout_c
(
buf
);
ndbrequire
(
false
);
}
releaseAbortResources
(
signal
);
return
;
}
//if
return
;
}
//if
TloopCount
++
;
if
(
TloopCount
>=
1024
)
{
jam
();
...
...
@@ -6313,6 +6315,7 @@ void Dbtc::sendAbortedAfterTimeout(Signal* signal, int Tcheck)
// away the job buffer.
/*------------------------------------------------------------------*/
setApiConTimer
(
apiConnectptr
.
i
,
ctcTimer
,
__LINE__
);
apiConnectptr
.
p
->
counter
++
;
signal
->
theData
[
0
]
=
TcContinueB
::
ZABORT_TIMEOUT_BREAK
;
signal
->
theData
[
1
]
=
tcConnectptr
.
i
;
signal
->
theData
[
2
]
=
apiConnectptr
.
i
;
...
...
@@ -10039,7 +10042,8 @@ void Dbtc::releaseAbortResources(Signal* signal)
}
//if
}
setApiConTimer
(
apiConnectptr
.
i
,
0
,
__LINE__
);
setApiConTimer
(
apiConnectptr
.
i
,
0
,
100000
+
c_apiConTimer_line
[
apiConnectptr
.
i
]);
if
(
apiConnectptr
.
p
->
apiFailState
==
ZTRUE
)
{
jam
();
handleApiFailState
(
signal
,
apiConnectptr
.
i
);
...
...
@@ -11326,6 +11330,8 @@ void Dbtc::execTCKEYCONF(Signal* signal)
}
const
UintR
TconnectIndex
=
indexOp
->
connectionIndex
;
ApiConnectRecord
*
const
regApiPtr
=
&
apiConnectRecord
[
TconnectIndex
];
apiConnectptr
.
p
=
regApiPtr
;
apiConnectptr
.
i
=
TconnectIndex
;
switch
(
indexOp
->
indexOpState
)
{
case
(
IOS_NOOP
):
{
jam
();
...
...
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