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
00e5047e
Commit
00e5047e
authored
Oct 15, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
autotest failures
parent
164342f9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
41 additions
and
12 deletions
+41
-12
ndb/src/kernel/blocks/dblqh/Dblqh.hpp
ndb/src/kernel/blocks/dblqh/Dblqh.hpp
+1
-0
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
+14
-6
ndb/src/ndbapi/NdbOperationExec.cpp
ndb/src/ndbapi/NdbOperationExec.cpp
+16
-5
ndb/src/ndbapi/NdbScanOperation.cpp
ndb/src/ndbapi/NdbScanOperation.cpp
+2
-0
ndb/test/src/UtilTransactions.cpp
ndb/test/src/UtilTransactions.cpp
+8
-1
No files found.
ndb/src/kernel/blocks/dblqh/Dblqh.hpp
View file @
00e5047e
...
...
@@ -2433,6 +2433,7 @@ private:
void
abortStateHandlerLab
(
Signal
*
signal
);
void
writeAttrinfoLab
(
Signal
*
signal
);
void
scanAttrinfoLab
(
Signal
*
signal
,
Uint32
*
dataPtr
,
Uint32
length
);
void
abort_scan
(
Signal
*
signal
,
Uint32
scan_ptr_i
,
Uint32
errcode
);
void
localAbortStateHandlerLab
(
Signal
*
signal
);
void
logLqhkeyreqLab
(
Signal
*
signal
);
void
lqhAttrinfoLab
(
Signal
*
signal
,
Uint32
*
dataPtr
,
Uint32
length
);
...
...
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
View file @
00e5047e
...
...
@@ -2824,9 +2824,11 @@ void Dblqh::execKEYINFO(Signal* signal)
return
;
}
//if
jam
();
abort
();
terrorCode
=
errorCode
;
abortErrorLab
(
signal
);
if
(
state
==
TcConnectionrec
::
WAIT_TUPKEYINFO
)
abortErrorLab
(
signal
);
else
abort_scan
(
signal
,
regTcPtr
->
tcScanRec
,
errorCode
);
return
;
}
//if
if
(
state
==
TcConnectionrec
::
WAIT_TUPKEYINFO
)
...
...
@@ -7602,23 +7604,29 @@ void Dblqh::scanAttrinfoLab(Signal* signal, Uint32* dataPtr, Uint32 length)
}
//if
return
;
}
//if
terrorCode
=
ZGET_ATTRINBUF_ERROR
;
abort_scan
(
signal
,
scanptr
.
i
,
ZGET_ATTRINBUF_ERROR
);
}
void
Dblqh
::
abort_scan
(
Signal
*
signal
,
Uint32
scan_ptr_i
,
Uint32
errcode
){
jam
();
scanptr
.
i
=
scan_ptr_i
;
c_scanRecordPool
.
getPtr
(
scanptr
);
finishScanrec
(
signal
);
releaseScanrec
(
signal
);
tcConnectptr
.
p
->
transactionState
=
TcConnectionrec
::
IDLE
;
tcConnectptr
.
p
->
abortState
=
TcConnectionrec
::
ABORT_ACTIVE
;
ScanFragRef
*
ref
=
(
ScanFragRef
*
)
&
signal
->
theData
[
0
];
ref
->
senderData
=
tcConnectptr
.
p
->
clientConnectrec
;
ref
->
transId1
=
tcConnectptr
.
p
->
transid
[
0
];
ref
->
transId2
=
tcConnectptr
.
p
->
transid
[
1
];
ref
->
errorCode
=
terrorC
ode
;
ref
->
errorCode
=
errc
ode
;
sendSignal
(
tcConnectptr
.
p
->
clientBlockref
,
GSN_SCAN_FRAGREF
,
signal
,
ScanFragRef
::
SignalLength
,
JBB
);
deleteTransidHash
(
signal
);
releaseOprec
(
signal
);
releaseTcrec
(
signal
,
tcConnectptr
);
}
//Dblqh::scanAttrinfoLab()
}
/*---------------------------------------------------------------------*/
/* Send this 'I am alive' signal to TC when it is received from ACC */
...
...
ndb/src/ndbapi/NdbOperationExec.cpp
View file @
00e5047e
...
...
@@ -541,6 +541,9 @@ NdbOperation::receiveTCKEYREF( NdbApiSignal* aSignal)
return
-
1
;
}
//if
AbortOption
ao
=
(
AbortOption
)
theNdbCon
->
m_abortOption
;
theReceiver
.
m_received_result_length
=
~
0
;
theStatus
=
Finished
;
theNdbCon
->
theReturnStatus
=
NdbConnection
::
ReturnFailure
;
...
...
@@ -548,11 +551,19 @@ NdbOperation::receiveTCKEYREF( NdbApiSignal* aSignal)
theNdbCon
->
setOperationErrorCodeAbort
(
aSignal
->
readData
(
4
));
if
(
theOperationType
!=
ReadRequest
||
!
theSimpleIndicator
)
// not simple read
return
theNdbCon
->
OpCompleteFailure
(
theNdbCon
->
m_abortOption
);
// Simple read is always ignore error
return
theNdbCon
->
OpCompleteFailure
(
IgnoreError
);
}
//NdbOperation::receiveTCKEYREF()
return
theNdbCon
->
OpCompleteFailure
(
ao
);
/**
* If TCKEYCONF has arrived
* op has completed (maybe trans has completed)
*/
if
(
theReceiver
.
m_expected_result_length
)
{
return
theNdbCon
->
OpCompleteFailure
(
AbortOnError
);
}
return
-
1
;
}
void
...
...
ndb/src/ndbapi/NdbScanOperation.cpp
View file @
00e5047e
...
...
@@ -566,6 +566,8 @@ int NdbScanOperation::nextResult(bool fetchAllowed)
setErrorCode
(
4028
);
// Node fail
break
;
case
-
3
:
// send_next_scan -> return fail (set error-code self)
if
(
theError
.
code
==
0
)
setErrorCode
(
4028
);
// seq changed = Node fail
break
;
}
...
...
ndb/test/src/UtilTransactions.cpp
View file @
00e5047e
...
...
@@ -951,8 +951,15 @@ UtilTransactions::scanAndCompareUniqueIndex(Ndb* pNdb,
pOp
=
pTrans
->
getNdbScanOperation
(
tab
.
getName
());
if
(
pOp
==
NULL
)
{
ERR
(
pTrans
->
getNdbError
()
);
const
NdbError
err
=
pNdb
->
getNdbError
(
);
pNdb
->
closeTransaction
(
pTrans
);
ERR
(
err
);
if
(
err
.
status
==
NdbError
::
TemporaryError
){
NdbSleep_MilliSleep
(
50
);
retryAttempt
++
;
continue
;
}
return
NDBT_FAILED
;
}
...
...
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