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
087a694f
Commit
087a694f
authored
Oct 08, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix simple/dirty read handling
parent
f715d82a
Changes
20
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
226 additions
and
179 deletions
+226
-179
ndb/include/kernel/signaldata/TcKeyConf.hpp
ndb/include/kernel/signaldata/TcKeyConf.hpp
+2
-1
ndb/include/ndbapi/Ndb.hpp
ndb/include/ndbapi/Ndb.hpp
+3
-1
ndb/include/ndbapi/NdbConnection.hpp
ndb/include/ndbapi/NdbConnection.hpp
+12
-3
ndb/include/ndbapi/NdbOperation.hpp
ndb/include/ndbapi/NdbOperation.hpp
+0
-7
ndb/include/ndbapi/NdbReceiver.hpp
ndb/include/ndbapi/NdbReceiver.hpp
+3
-1
ndb/src/common/debugger/signaldata/TcKeyConf.cpp
ndb/src/common/debugger/signaldata/TcKeyConf.cpp
+26
-16
ndb/src/kernel/blocks/dblqh/Dblqh.hpp
ndb/src/kernel/blocks/dblqh/Dblqh.hpp
+0
-4
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
+19
-13
ndb/src/kernel/blocks/dbtc/Dbtc.hpp
ndb/src/kernel/blocks/dbtc/Dbtc.hpp
+1
-1
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
+85
-57
ndb/src/ndbapi/NdbApiSignal.cpp
ndb/src/ndbapi/NdbApiSignal.cpp
+1
-1
ndb/src/ndbapi/NdbConnection.cpp
ndb/src/ndbapi/NdbConnection.cpp
+15
-14
ndb/src/ndbapi/NdbIndexOperation.cpp
ndb/src/ndbapi/NdbIndexOperation.cpp
+20
-21
ndb/src/ndbapi/NdbOperationDefine.cpp
ndb/src/ndbapi/NdbOperationDefine.cpp
+8
-2
ndb/src/ndbapi/NdbOperationExec.cpp
ndb/src/ndbapi/NdbOperationExec.cpp
+15
-33
ndb/src/ndbapi/NdbReceiver.cpp
ndb/src/ndbapi/NdbReceiver.cpp
+3
-1
ndb/src/ndbapi/NdbScanOperation.cpp
ndb/src/ndbapi/NdbScanOperation.cpp
+1
-0
ndb/src/ndbapi/Ndbinit.cpp
ndb/src/ndbapi/Ndbinit.cpp
+3
-2
ndb/src/ndbapi/Ndblist.cpp
ndb/src/ndbapi/Ndblist.cpp
+8
-0
ndb/test/ndbapi/testOperations.cpp
ndb/test/ndbapi/testOperations.cpp
+1
-1
No files found.
ndb/include/kernel/signaldata/TcKeyConf.hpp
View file @
087a694f
...
@@ -47,7 +47,8 @@ public:
...
@@ -47,7 +47,8 @@ public:
*/
*/
STATIC_CONST
(
StaticLength
=
5
);
STATIC_CONST
(
StaticLength
=
5
);
STATIC_CONST
(
OperationLength
=
2
);
STATIC_CONST
(
OperationLength
=
2
);
STATIC_CONST
(
SimpleReadBit
=
(((
Uint32
)
1
)
<<
31
)
);
private:
private:
/**
/**
...
...
ndb/include/ndbapi/Ndb.hpp
View file @
087a694f
...
@@ -1612,7 +1612,6 @@ private:
...
@@ -1612,7 +1612,6 @@ private:
char
prefixName
[
NDB_MAX_INTERNAL_TABLE_LENGTH
];
char
prefixName
[
NDB_MAX_INTERNAL_TABLE_LENGTH
];
char
*
prefixEnd
;
char
*
prefixEnd
;
//Table* theTable; // The table object
class
NdbImpl
*
theImpl
;
class
NdbImpl
*
theImpl
;
class
NdbDictionaryImpl
*
theDictionary
;
class
NdbDictionaryImpl
*
theDictionary
;
class
NdbGlobalEventBufferHandle
*
theGlobalEventBufferHandle
;
class
NdbGlobalEventBufferHandle
*
theGlobalEventBufferHandle
;
...
@@ -1698,10 +1697,13 @@ private:
...
@@ -1698,10 +1697,13 @@ private:
NdbApiSignal
*
theCommitAckSignal
;
NdbApiSignal
*
theCommitAckSignal
;
#ifdef POORMANSPURIFY
int
cfreeSignals
;
int
cfreeSignals
;
int
cnewSignals
;
int
cnewSignals
;
int
cgetSignals
;
int
cgetSignals
;
int
creleaseSignals
;
int
creleaseSignals
;
#endif
static
void
executeMessage
(
void
*
,
NdbApiSignal
*
,
static
void
executeMessage
(
void
*
,
NdbApiSignal
*
,
struct
LinearSectionPtr
ptr
[
3
]);
struct
LinearSectionPtr
ptr
[
3
]);
...
...
ndb/include/ndbapi/NdbConnection.hpp
View file @
087a694f
...
@@ -526,9 +526,8 @@ private:
...
@@ -526,9 +526,8 @@ private:
int
sendCOMMIT
();
// Send a TC_COMMITREQ signal;
int
sendCOMMIT
();
// Send a TC_COMMITREQ signal;
void
setGCI
(
int
GCI
);
// Set the global checkpoint identity
void
setGCI
(
int
GCI
);
// Set the global checkpoint identity
int
OpCompleteFailure
();
// Operation Completed with success
int
OpCompleteFailure
(
Uint8
abortoption
);
int
OpCompleteSuccess
();
// Operation Completed with success
int
OpCompleteSuccess
();
void
CompletedOperations
();
// Move active ops to list of completed
void
CompletedOperations
();
// Move active ops to list of completed
void
OpSent
();
// Operation Sent with success
void
OpSent
();
// Operation Sent with success
...
@@ -649,6 +648,16 @@ private:
...
@@ -649,6 +648,16 @@ private:
Uint32
theNodeSequence
;
// The sequence no of the db node
Uint32
theNodeSequence
;
// The sequence no of the db node
bool
theReleaseOnClose
;
bool
theReleaseOnClose
;
/**
* handle transaction spanning
* multiple TC/db nodes
*
* 1) Bitmask with used nodes
* 2) Bitmask with nodes failed during op
*/
Uint32
m_db_nodes
[
2
];
Uint32
m_failed_db_nodes
[
2
];
// Scan operations
// Scan operations
bool
m_waitForReply
;
bool
m_waitForReply
;
NdbIndexScanOperation
*
m_theFirstScanOperation
;
NdbIndexScanOperation
*
m_theFirstScanOperation
;
...
...
ndb/include/ndbapi/NdbOperation.hpp
View file @
087a694f
...
@@ -787,11 +787,6 @@ protected:
...
@@ -787,11 +787,6 @@ protected:
int
receiveTCKEYREF
(
NdbApiSignal
*
);
int
receiveTCKEYREF
(
NdbApiSignal
*
);
int
receiveTRANSID_AI
(
const
Uint32
*
aDataPtr
,
Uint32
aDataLength
);
int
receiveREAD_CONF
(
const
Uint32
*
aDataPtr
,
Uint32
aDataLength
);
int
checkMagicNumber
(
bool
b
=
true
);
// Verify correct object
int
checkMagicNumber
(
bool
b
=
true
);
// Verify correct object
int
checkState_TransId
(
NdbApiSignal
*
aSignal
);
int
checkState_TransId
(
NdbApiSignal
*
aSignal
);
...
@@ -815,8 +810,6 @@ protected:
...
@@ -815,8 +810,6 @@ protected:
int
branch_col_null
(
Uint32
type
,
Uint32
col
,
Uint32
Label
);
int
branch_col_null
(
Uint32
type
,
Uint32
col
,
Uint32
Label
);
// Handle ATTRINFO signals
// Handle ATTRINFO signals
int
receiveREAD_AI
(
Uint32
*
aDataPtr
,
Uint32
aLength
);
int
insertATTRINFO
(
Uint32
aData
);
int
insertATTRINFO
(
Uint32
aData
);
int
insertATTRINFOloop
(
const
Uint32
*
aDataPtr
,
Uint32
aLength
);
int
insertATTRINFOloop
(
const
Uint32
*
aDataPtr
,
Uint32
aLength
);
...
...
ndb/include/ndbapi/NdbReceiver.hpp
View file @
087a694f
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL // Not part of public interface
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL // Not part of public interface
#include <ndb_types.h>
#include <ndb_types.h>
#include <ndb_global.h>
class
Ndb
;
class
Ndb
;
class
NdbReceiver
class
NdbReceiver
...
@@ -127,7 +128,8 @@ int
...
@@ -127,7 +128,8 @@ int
NdbReceiver
::
execTCOPCONF
(
Uint32
len
){
NdbReceiver
::
execTCOPCONF
(
Uint32
len
){
Uint32
tmp
=
m_received_result_length
;
Uint32
tmp
=
m_received_result_length
;
m_expected_result_length
=
len
;
m_expected_result_length
=
len
;
return
(
tmp
==
len
?
1
:
0
);
assert
(
!
(
tmp
&&
!
len
));
return
((
bool
)
len
^
(
bool
)
tmp
?
0
:
1
);
}
}
inline
inline
...
...
ndb/src/common/debugger/signaldata/TcKeyConf.cpp
View file @
087a694f
...
@@ -22,38 +22,48 @@ printTCKEYCONF(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receive
...
@@ -22,38 +22,48 @@ printTCKEYCONF(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receive
if
(
receiverBlockNo
==
API_PACKED
)
{
if
(
receiverBlockNo
==
API_PACKED
)
{
fprintf
(
output
,
"Signal data: "
);
return
false
;
Uint32
i
=
0
;
Uint32
Theader
=
*
theData
++
;
while
(
i
<
len
)
Uint32
TpacketLen
=
(
Theader
&
0x1F
)
+
3
;
fprintf
(
output
,
"H
\'
%.8x "
,
theData
[
i
++
]);
Uint32
TrecBlockNo
=
Theader
>>
16
;
fprintf
(
output
,
"
\n
"
);
do
{
fprintf
(
output
,
"Block: %d %d %d
\n
"
,
TrecBlockNo
,
len
,
TpacketLen
);
printTCKEYCONF
(
output
,
theData
,
TpacketLen
,
TrecBlockNo
);
assert
(
len
>=
(
1
+
TpacketLen
));
len
-=
(
1
+
TpacketLen
);
theData
+=
TpacketLen
;
}
while
(
len
);
return
true
;
}
}
else
{
else
{
const
TcKeyConf
*
const
sig
=
(
TcKeyConf
*
)
theData
;
const
TcKeyConf
*
const
sig
=
(
TcKeyConf
*
)
theData
;
fprintf
(
output
,
"Signal data: "
);
Uint32
i
=
0
;
Uint32
i
=
0
;
Uint32
confInfo
=
sig
->
confInfo
;
Uint32
confInfo
=
sig
->
confInfo
;
Uint32
noOfOp
=
TcKeyConf
::
getNoOfOperations
(
confInfo
);
Uint32
noOfOp
=
TcKeyConf
::
getNoOfOperations
(
confInfo
);
if
(
noOfOp
>
10
)
noOfOp
=
10
;
if
(
noOfOp
>
10
)
noOfOp
=
10
;
while
(
i
<
len
)
fprintf
(
output
,
" apiConnectPtr: H'%.8x, gci: %u, transId:(H'%.8x, H'%.8x)
\n
"
,
fprintf
(
output
,
"H
\'
%.8x "
,
theData
[
i
++
]);
fprintf
(
output
,
"
\n
"
);
fprintf
(
output
,
"apiConnectPtr: H'%.8x, gci: %u, transId:(H'%.8x, H'%.8x)
\n
"
,
sig
->
apiConnectPtr
,
sig
->
gci
,
sig
->
transId1
,
sig
->
transId2
);
sig
->
apiConnectPtr
,
sig
->
gci
,
sig
->
transId1
,
sig
->
transId2
);
fprintf
(
output
,
"noOfOperations: %u, commitFlag: %s, markerFlag: %s
\n
"
,
fprintf
(
output
,
"
noOfOperations: %u, commitFlag: %s, markerFlag: %s
\n
"
,
noOfOp
,
noOfOp
,
(
TcKeyConf
::
getCommitFlag
(
confInfo
)
==
0
)
?
"false"
:
"true"
,
(
TcKeyConf
::
getCommitFlag
(
confInfo
)
==
0
)
?
"false"
:
"true"
,
(
TcKeyConf
::
getMarkerFlag
(
confInfo
)
==
0
)
?
"false"
:
"true"
);
(
TcKeyConf
::
getMarkerFlag
(
confInfo
)
==
0
)
?
"false"
:
"true"
);
fprintf
(
output
,
"Operations:
\n
"
);
fprintf
(
output
,
"Operations:
\n
"
);
for
(
i
=
0
;
i
<
noOfOp
;
i
++
)
{
for
(
i
=
0
;
i
<
noOfOp
;
i
++
)
{
fprintf
(
output
,
if
(
sig
->
operations
[
i
].
attrInfoLen
>
TcKeyConf
::
SimpleReadBit
)
"apiOperationPtr: H'%.8x, attrInfoLen: %u
\n
"
,
fprintf
(
output
,
sig
->
operations
[
i
].
apiOperationPtr
,
" apiOperationPtr: H'%.8x, simplereadnode: %u
\n
"
,
sig
->
operations
[
i
].
attrInfoLen
);
sig
->
operations
[
i
].
apiOperationPtr
,
sig
->
operations
[
i
].
attrInfoLen
&
(
~
TcKeyConf
::
SimpleReadBit
));
else
fprintf
(
output
,
" apiOperationPtr: H'%.8x, attrInfoLen: %u
\n
"
,
sig
->
operations
[
i
].
apiOperationPtr
,
sig
->
operations
[
i
].
attrInfoLen
);
}
}
}
}
return
true
;
return
true
;
}
}
ndb/src/kernel/blocks/dblqh/Dblqh.hpp
View file @
087a694f
...
@@ -234,10 +234,6 @@
...
@@ -234,10 +234,6 @@
#define ZNODE_UP 0
#define ZNODE_UP 0
#define ZNODE_DOWN 1
#define ZNODE_DOWN 1
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* OPERATION TYPES */
/* ------------------------------------------------------------------------- */
#define ZSIMPLE_READ 1
/* ------------------------------------------------------------------------- */
/* START PHASES */
/* START PHASES */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
#define ZLAST_START_PHASE 255
#define ZLAST_START_PHASE 255
...
...
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
View file @
087a694f
...
@@ -3299,8 +3299,8 @@ void Dblqh::execLQHKEYREQ(Signal* signal)
...
@@ -3299,8 +3299,8 @@ void Dblqh::execLQHKEYREQ(Signal* signal)
regTcPtr
->
dirtyOp
=
LqhKeyReq
::
getDirtyFlag
(
Treqinfo
);
regTcPtr
->
dirtyOp
=
LqhKeyReq
::
getDirtyFlag
(
Treqinfo
);
regTcPtr
->
opExec
=
LqhKeyReq
::
getInterpretedFlag
(
Treqinfo
);
regTcPtr
->
opExec
=
LqhKeyReq
::
getInterpretedFlag
(
Treqinfo
);
regTcPtr
->
opSimple
=
LqhKeyReq
::
getSimpleFlag
(
Treqinfo
);
regTcPtr
->
opSimple
=
LqhKeyReq
::
getSimpleFlag
(
Treqinfo
);
regTcPtr
->
simpleRead
=
((
Treqinfo
>>
18
)
&
15
);
regTcPtr
->
operation
=
LqhKeyReq
::
getOperation
(
Treqinfo
);
regTcPtr
->
operation
=
LqhKeyReq
::
getOperation
(
Treqinfo
);
regTcPtr
->
simpleRead
=
regTcPtr
->
operation
==
ZREAD
&&
regTcPtr
->
opSimple
;
regTcPtr
->
seqNoReplica
=
LqhKeyReq
::
getSeqNoReplica
(
Treqinfo
);
regTcPtr
->
seqNoReplica
=
LqhKeyReq
::
getSeqNoReplica
(
Treqinfo
);
UintR
TreclenAiLqhkey
=
LqhKeyReq
::
getAIInLqhKeyReq
(
Treqinfo
);
UintR
TreclenAiLqhkey
=
LqhKeyReq
::
getAIInLqhKeyReq
(
Treqinfo
);
regTcPtr
->
apiVersionNo
=
0
;
regTcPtr
->
apiVersionNo
=
0
;
...
@@ -3431,7 +3431,7 @@ void Dblqh::execLQHKEYREQ(Signal* signal)
...
@@ -3431,7 +3431,7 @@ void Dblqh::execLQHKEYREQ(Signal* signal)
if
((
tfragDistKey
!=
TdistKey
)
&&
if
((
tfragDistKey
!=
TdistKey
)
&&
(
regTcPtr
->
seqNoReplica
==
0
)
&&
(
regTcPtr
->
seqNoReplica
==
0
)
&&
(
regTcPtr
->
dirtyOp
==
ZFALSE
)
&&
(
regTcPtr
->
dirtyOp
==
ZFALSE
)
&&
(
regTcPtr
->
simpleRead
!=
ZSIMPLE_READ
))
{
(
regTcPtr
->
simpleRead
==
ZFALSE
))
{
/* ----------------------------------------------------------------------
/* ----------------------------------------------------------------------
* WE HAVE DIFFERENT OPINION THAN THE DIH THAT STARTED THE TRANSACTION.
* WE HAVE DIFFERENT OPINION THAN THE DIH THAT STARTED THE TRANSACTION.
* THE REASON COULD BE THAT THIS IS AN OLD DISTRIBUTION WHICH IS NO LONGER
* THE REASON COULD BE THAT THIS IS AN OLD DISTRIBUTION WHICH IS NO LONGER
...
@@ -3439,7 +3439,7 @@ void Dblqh::execLQHKEYREQ(Signal* signal)
...
@@ -3439,7 +3439,7 @@ void Dblqh::execLQHKEYREQ(Signal* signal)
* ONE IS ADDED TO THE DISTRIBUTION KEY EVERY TIME WE ADD A NEW REPLICA.
* ONE IS ADDED TO THE DISTRIBUTION KEY EVERY TIME WE ADD A NEW REPLICA.
* FAILED REPLICAS DO NOT AFFECT THE DISTRIBUTION KEY. THIS MEANS THAT THE
* FAILED REPLICAS DO NOT AFFECT THE DISTRIBUTION KEY. THIS MEANS THAT THE
* MAXIMUM DEVIATION CAN BE ONE BETWEEN THOSE TWO VALUES.
* MAXIMUM DEVIATION CAN BE ONE BETWEEN THOSE TWO VALUES.
* ---------------------------------------------------------------------
-
*/
* --------------------------------------------------------------------- */
Int32
tmp
=
TdistKey
-
tfragDistKey
;
Int32
tmp
=
TdistKey
-
tfragDistKey
;
tmp
=
(
tmp
<
0
?
-
tmp
:
tmp
);
tmp
=
(
tmp
<
0
?
-
tmp
:
tmp
);
if
((
tmp
<=
1
)
||
(
tfragDistKey
==
0
))
{
if
((
tmp
<=
1
)
||
(
tfragDistKey
==
0
))
{
...
@@ -3879,7 +3879,7 @@ void Dblqh::tupkeyConfLab(Signal* signal)
...
@@ -3879,7 +3879,7 @@ void Dblqh::tupkeyConfLab(Signal* signal)
/* ---- GET OPERATION TYPE AND CHECK WHAT KIND OF OPERATION IS REQUESTED ---- */
/* ---- GET OPERATION TYPE AND CHECK WHAT KIND OF OPERATION IS REQUESTED ---- */
const
TupKeyConf
*
const
tupKeyConf
=
(
TupKeyConf
*
)
&
signal
->
theData
[
0
];
const
TupKeyConf
*
const
tupKeyConf
=
(
TupKeyConf
*
)
&
signal
->
theData
[
0
];
TcConnectionrec
*
const
regTcPtr
=
tcConnectptr
.
p
;
TcConnectionrec
*
const
regTcPtr
=
tcConnectptr
.
p
;
if
(
regTcPtr
->
simpleRead
==
ZSIMPLE_READ
)
{
if
(
regTcPtr
->
simpleRead
)
{
jam
();
jam
();
/* ----------------------------------------------------------------------
/* ----------------------------------------------------------------------
* THE OPERATION IS A SIMPLE READ. WE WILL IMMEDIATELY COMMIT THE OPERATION.
* THE OPERATION IS A SIMPLE READ. WE WILL IMMEDIATELY COMMIT THE OPERATION.
...
@@ -5467,6 +5467,8 @@ void Dblqh::commitContinueAfterBlockedLab(Signal* signal)
...
@@ -5467,6 +5467,8 @@ void Dblqh::commitContinueAfterBlockedLab(Signal* signal)
TcConnectionrec
*
const
regTcPtr
=
tcConnectptr
.
p
;
TcConnectionrec
*
const
regTcPtr
=
tcConnectptr
.
p
;
Fragrecord
*
const
regFragptr
=
fragptr
.
p
;
Fragrecord
*
const
regFragptr
=
fragptr
.
p
;
Uint32
operation
=
regTcPtr
->
operation
;
Uint32
operation
=
regTcPtr
->
operation
;
Uint32
simpleRead
=
regTcPtr
->
simpleRead
;
Uint32
dirtyOp
=
regTcPtr
->
dirtyOp
;
if
(
regTcPtr
->
activeCreat
==
ZFALSE
)
{
if
(
regTcPtr
->
activeCreat
==
ZFALSE
)
{
if
((
cCommitBlocked
==
true
)
&&
if
((
cCommitBlocked
==
true
)
&&
(
regFragptr
->
fragActiveStatus
==
ZTRUE
))
{
(
regFragptr
->
fragActiveStatus
==
ZTRUE
))
{
...
@@ -5504,13 +5506,18 @@ void Dblqh::commitContinueAfterBlockedLab(Signal* signal)
...
@@ -5504,13 +5506,18 @@ void Dblqh::commitContinueAfterBlockedLab(Signal* signal)
tupCommitReq
->
hashValue
=
regTcPtr
->
hashValue
;
tupCommitReq
->
hashValue
=
regTcPtr
->
hashValue
;
EXECUTE_DIRECT
(
tup
,
GSN_TUP_COMMITREQ
,
signal
,
EXECUTE_DIRECT
(
tup
,
GSN_TUP_COMMITREQ
,
signal
,
TupCommitReq
::
SignalLength
);
TupCommitReq
::
SignalLength
);
}
//if
Uint32
acc
=
refToBlock
(
regTcPtr
->
tcAccBlockref
);
Uint32
acc
=
refToBlock
(
regTcPtr
->
tcAccBlockref
);
signal
->
theData
[
0
]
=
regTcPtr
->
accConnectrec
;
signal
->
theData
[
0
]
=
regTcPtr
->
accConnectrec
;
EXECUTE_DIRECT
(
acc
,
GSN_ACC_COMMITREQ
,
signal
,
1
);
EXECUTE_DIRECT
(
acc
,
GSN_ACC_COMMITREQ
,
signal
,
1
);
}
else
{
Uint32
simpleRead
=
regTcPtr
->
simpleRead
;
if
(
!
dirtyOp
){
Uint32
acc
=
refToBlock
(
regTcPtr
->
tcAccBlockref
);
signal
->
theData
[
0
]
=
regTcPtr
->
accConnectrec
;
EXECUTE_DIRECT
(
acc
,
GSN_ACC_COMMITREQ
,
signal
,
1
);
}
}
jamEntry
();
jamEntry
();
if
(
simpleRead
==
ZSIMPLE_READ
)
{
if
(
simpleRead
)
{
jam
();
jam
();
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/*THE OPERATION WAS A SIMPLE READ THUS THE COMMIT PHASE IS ONLY NEEDED TO */
/*THE OPERATION WAS A SIMPLE READ THUS THE COMMIT PHASE IS ONLY NEEDED TO */
...
@@ -5523,7 +5530,6 @@ void Dblqh::commitContinueAfterBlockedLab(Signal* signal)
...
@@ -5523,7 +5530,6 @@ void Dblqh::commitContinueAfterBlockedLab(Signal* signal)
return
;
return
;
}
//if
}
//if
}
//if
}
//if
Uint32
dirtyOp
=
regTcPtr
->
dirtyOp
;
Uint32
seqNoReplica
=
regTcPtr
->
seqNoReplica
;
Uint32
seqNoReplica
=
regTcPtr
->
seqNoReplica
;
if
(
regTcPtr
->
gci
>
regFragptr
->
newestGci
)
{
if
(
regTcPtr
->
gci
>
regFragptr
->
newestGci
)
{
jam
();
jam
();
...
@@ -6092,7 +6098,7 @@ void Dblqh::abortStateHandlerLab(Signal* signal)
...
@@ -6092,7 +6098,7 @@ void Dblqh::abortStateHandlerLab(Signal* signal)
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
return
;
return
;
}
//if
}
//if
if
(
regTcPtr
->
simpleRead
==
ZSIMPLE_READ
)
{
if
(
regTcPtr
->
simpleRead
)
{
jam
();
jam
();
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/*A SIMPLE READ IS CURRENTLY RELEASING THE LOCKS OR WAITING FOR ACCESS TO */
/*A SIMPLE READ IS CURRENTLY RELEASING THE LOCKS OR WAITING FOR ACCESS TO */
...
@@ -6378,7 +6384,7 @@ void Dblqh::continueAbortLab(Signal* signal)
...
@@ -6378,7 +6384,7 @@ void Dblqh::continueAbortLab(Signal* signal)
void
Dblqh
::
continueAfterLogAbortWriteLab
(
Signal
*
signal
)
void
Dblqh
::
continueAfterLogAbortWriteLab
(
Signal
*
signal
)
{
{
TcConnectionrec
*
const
regTcPtr
=
tcConnectptr
.
p
;
TcConnectionrec
*
const
regTcPtr
=
tcConnectptr
.
p
;
if
(
regTcPtr
->
simpleRead
==
ZSIMPLE_READ
)
{
if
(
regTcPtr
->
simpleRead
)
{
jam
();
jam
();
TcKeyRef
*
const
tcKeyRef
=
(
TcKeyRef
*
)
signal
->
getDataPtrSend
();
TcKeyRef
*
const
tcKeyRef
=
(
TcKeyRef
*
)
signal
->
getDataPtrSend
();
...
...
ndb/src/kernel/blocks/dbtc/Dbtc.hpp
View file @
087a694f
...
@@ -1459,7 +1459,7 @@ private:
...
@@ -1459,7 +1459,7 @@ private:
void
releaseAttrinfo
();
void
releaseAttrinfo
();
void
releaseGcp
(
Signal
*
signal
);
void
releaseGcp
(
Signal
*
signal
);
void
releaseKeys
();
void
releaseKeys
();
void
releaseSimpleRead
(
Signal
*
signal
);
void
releaseSimpleRead
(
Signal
*
,
ApiConnectRecordPtr
,
TcConnectRecord
*
);
void
releaseDirtyWrite
(
Signal
*
signal
);
void
releaseDirtyWrite
(
Signal
*
signal
);
void
releaseTcCon
();
void
releaseTcCon
();
void
releaseTcConnectFail
(
Signal
*
signal
);
void
releaseTcConnectFail
(
Signal
*
signal
);
...
...
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
View file @
087a694f
This diff is collapsed.
Click to expand it.
ndb/src/ndbapi/NdbApiSignal.cpp
View file @
087a694f
...
@@ -168,7 +168,7 @@ NdbApiSignal::setSignal(int aNdbSignalType)
...
@@ -168,7 +168,7 @@ NdbApiSignal::setSignal(int aNdbSignalType)
theTrace
=
TestOrd
::
TraceAPI
;
theTrace
=
TestOrd
::
TraceAPI
;
theReceiversBlockNumber
=
DBTC
;
theReceiversBlockNumber
=
DBTC
;
theVerId_signalNumber
=
GSN_TC_COMMITREQ
;
theVerId_signalNumber
=
GSN_TC_COMMITREQ
;
theLength
=
5
;
theLength
=
3
;
}
}
break
;
break
;
...
...
ndb/src/ndbapi/NdbConnection.cpp
View file @
087a694f
...
@@ -83,6 +83,11 @@ NdbConnection::NdbConnection( Ndb* aNdb ) :
...
@@ -83,6 +83,11 @@ NdbConnection::NdbConnection( Ndb* aNdb ) :
theListState
=
NotInList
;
theListState
=
NotInList
;
theError
.
code
=
0
;
theError
.
code
=
0
;
theId
=
theNdb
->
theNdbObjectIdMap
->
map
(
this
);
theId
=
theNdb
->
theNdbObjectIdMap
->
map
(
this
);
#define CHECK_SZ(mask, sz) assert((sizeof(mask)/sizeof(mask[0])) == sz)
CHECK_SZ
(
m_db_nodes
,
NdbNodeBitmask
::
Size
);
CHECK_SZ
(
m_failed_db_nodes
,
NdbNodeBitmask
::
Size
);
}
//NdbConnection::NdbConnection()
}
//NdbConnection::NdbConnection()
/*****************************************************************************
/*****************************************************************************
...
@@ -490,11 +495,6 @@ NdbConnection::executeAsynchPrepare( ExecType aTypeOfExec,
...
@@ -490,11 +495,6 @@ NdbConnection::executeAsynchPrepare( ExecType aTypeOfExec,
theListState
=
InPreparedList
;
theListState
=
InPreparedList
;
tNdb
->
theNoOfPreparedTransactions
=
tnoOfPreparedTransactions
+
1
;
tNdb
->
theNoOfPreparedTransactions
=
tnoOfPreparedTransactions
+
1
;
if
(
tCommitStatus
==
Committed
){
tCommitStatus
=
Started
;
tTransactionIsStarted
=
false
;
}
if
((
tCommitStatus
!=
Started
)
||
if
((
tCommitStatus
!=
Started
)
||
(
aTypeOfExec
==
Rollback
))
{
(
aTypeOfExec
==
Rollback
))
{
/*****************************************************************************
/*****************************************************************************
...
@@ -503,7 +503,7 @@ NdbConnection::executeAsynchPrepare( ExecType aTypeOfExec,
...
@@ -503,7 +503,7 @@ NdbConnection::executeAsynchPrepare( ExecType aTypeOfExec,
* same action.
* same action.
****************************************************************************/
****************************************************************************/
if
(
aTypeOfExec
==
Rollback
)
{
if
(
aTypeOfExec
==
Rollback
)
{
if
(
theTransactionIsStarted
==
false
)
{
if
(
theTransactionIsStarted
==
false
||
theSimpleState
)
{
theCommitStatus
=
Aborted
;
theCommitStatus
=
Aborted
;
theSendStatus
=
sendCompleted
;
theSendStatus
=
sendCompleted
;
}
else
{
}
else
{
...
@@ -529,6 +529,7 @@ NdbConnection::executeAsynchPrepare( ExecType aTypeOfExec,
...
@@ -529,6 +529,7 @@ NdbConnection::executeAsynchPrepare( ExecType aTypeOfExec,
}
//if
}
//if
}
else
{
}
else
{
if
(
aTypeOfExec
==
Commit
)
{
if
(
aTypeOfExec
==
Commit
)
{
if
(
aTypeOfExec
==
Commit
&&
!
theSimpleState
)
{
/**********************************************************************
/**********************************************************************
* A Transaction have been started and no more operations exist.
* A Transaction have been started and no more operations exist.
* We will use the commit method.
* We will use the commit method.
...
@@ -610,6 +611,8 @@ NdbConnection::executeAsynchPrepare( ExecType aTypeOfExec,
...
@@ -610,6 +611,8 @@ NdbConnection::executeAsynchPrepare( ExecType aTypeOfExec,
theNoOfOpSent
=
0
;
theNoOfOpSent
=
0
;
theNoOfOpCompleted
=
0
;
theNoOfOpCompleted
=
0
;
theSendStatus
=
sendOperations
;
theSendStatus
=
sendOperations
;
NdbNodeBitmask
::
clear
(
m_db_nodes
);
NdbNodeBitmask
::
clear
(
m_failed_db_nodes
);
DBUG_VOID_RETURN
;
DBUG_VOID_RETURN
;
}
//NdbConnection::executeAsynchPrepare()
}
//NdbConnection::executeAsynchPrepare()
...
@@ -1541,6 +1544,10 @@ from other transactions.
...
@@ -1541,6 +1544,10 @@ from other transactions.
tPtr
++
;
tPtr
++
;
if
(
tOp
&&
tOp
->
checkMagicNumber
())
{
if
(
tOp
&&
tOp
->
checkMagicNumber
())
{
tNoComp
+=
tOp
->
execTCOPCONF
(
tAttrInfoLen
);
tNoComp
+=
tOp
->
execTCOPCONF
(
tAttrInfoLen
);
if
(
tAttrInfoLen
>
TcKeyConf
::
SimpleReadBit
){
NdbNodeBitmask
::
set
(
m_db_nodes
,
tAttrInfoLen
&
(
~
TcKeyConf
::
SimpleReadBit
));
}
}
else
{
}
else
{
return
-
1
;
return
-
1
;
}
//if
}
//if
...
@@ -1790,7 +1797,7 @@ Parameters: aErrorCode: The error code.
...
@@ -1790,7 +1797,7 @@ Parameters: aErrorCode: The error code.
Remark: An operation was completed with failure.
Remark: An operation was completed with failure.
*******************************************************************************/
*******************************************************************************/
int
int
NdbConnection
::
OpCompleteFailure
()
NdbConnection
::
OpCompleteFailure
(
Uint8
abortOption
)
{
{
Uint32
tNoComp
=
theNoOfOpCompleted
;
Uint32
tNoComp
=
theNoOfOpCompleted
;
Uint32
tNoSent
=
theNoOfOpSent
;
Uint32
tNoSent
=
theNoOfOpSent
;
...
@@ -1804,10 +1811,7 @@ NdbConnection::OpCompleteFailure()
...
@@ -1804,10 +1811,7 @@ NdbConnection::OpCompleteFailure()
//decide the success of the whole transaction since a simple
//decide the success of the whole transaction since a simple
//operation is not really part of that transaction.
//operation is not really part of that transaction.
//------------------------------------------------------------------------
//------------------------------------------------------------------------
if
(
theSimpleState
==
1
)
{
if
(
abortOption
==
IgnoreError
){
theCommitStatus
=
NdbConnection
::
Aborted
;
}
//if
if
(
m_abortOption
==
IgnoreError
){
/**
/**
* There's always a TCKEYCONF when using IgnoreError
* There's always a TCKEYCONF when using IgnoreError
*/
*/
...
@@ -1842,9 +1846,6 @@ NdbConnection::OpCompleteSuccess()
...
@@ -1842,9 +1846,6 @@ NdbConnection::OpCompleteSuccess()
tNoComp
++
;
tNoComp
++
;
theNoOfOpCompleted
=
tNoComp
;
theNoOfOpCompleted
=
tNoComp
;
if
(
tNoComp
==
tNoSent
)
{
// Last operation completed
if
(
tNoComp
==
tNoSent
)
{
// Last operation completed
if
(
theSimpleState
==
1
)
{
theCommitStatus
=
NdbConnection
::
Committed
;
}
//if
return
0
;
return
0
;
}
else
if
(
tNoComp
<
tNoSent
)
{
}
else
if
(
tNoComp
<
tNoSent
)
{
return
-
1
;
// Continue waiting for more signals
return
-
1
;
// Continue waiting for more signals
...
...
ndb/src/ndbapi/NdbIndexOperation.cpp
View file @
087a694f
...
@@ -87,7 +87,19 @@ NdbIndexOperation::indxInit(const NdbIndexImpl * anIndex,
...
@@ -87,7 +87,19 @@ NdbIndexOperation::indxInit(const NdbIndexImpl * anIndex,
int
NdbIndexOperation
::
readTuple
(
NdbOperation
::
LockMode
lm
)
int
NdbIndexOperation
::
readTuple
(
NdbOperation
::
LockMode
lm
)
{
{
return
NdbOperation
::
readTuple
(
lm
);
switch
(
lm
)
{
case
LM_Read
:
return
readTuple
();
break
;
case
LM_Exclusive
:
return
readTupleExclusive
();
break
;
case
LM_CommittedRead
:
return
readTuple
();
break
;
default:
return
-
1
;
};
}
}
int
NdbIndexOperation
::
readTuple
()
int
NdbIndexOperation
::
readTuple
()
...
@@ -108,21 +120,21 @@ int NdbIndexOperation::simpleRead()
...
@@ -108,21 +120,21 @@ int NdbIndexOperation::simpleRead()
{
{
// First check that index is unique
// First check that index is unique
return
NdbOperation
::
simpleRead
();
return
NdbOperation
::
readTuple
();
}
}
int
NdbIndexOperation
::
dirtyRead
()
int
NdbIndexOperation
::
dirtyRead
()
{
{
// First check that index is unique
// First check that index is unique
return
NdbOperation
::
dirtyRead
();
return
NdbOperation
::
readTuple
();
}
}
int
NdbIndexOperation
::
committedRead
()
int
NdbIndexOperation
::
committedRead
()
{
{
// First check that index is unique
// First check that index is unique
return
NdbOperation
::
committedRead
();
return
NdbOperation
::
readTuple
();
}
}
int
NdbIndexOperation
::
updateTuple
()
int
NdbIndexOperation
::
updateTuple
()
...
@@ -536,7 +548,7 @@ NdbIndexOperation::prepareSend(Uint32 aTC_ConnectPtr, Uint64 aTransactionId)
...
@@ -536,7 +548,7 @@ NdbIndexOperation::prepareSend(Uint32 aTC_ConnectPtr, Uint64 aTransactionId)
//-------------------------------------------------------------
//-------------------------------------------------------------
Uint8
tReadInd
=
(
theOperationType
==
ReadRequest
);
Uint8
tReadInd
=
(
theOperationType
==
ReadRequest
);
Uint8
tSimpleState
=
tReadInd
&
tSimpleAlt
;
Uint8
tSimpleState
=
tReadInd
&
tSimpleAlt
;
theNdbCon
->
theSimpleState
=
tSimpleState
;
//
theNdbCon->theSimpleState = tSimpleState;
tcIndxReq
->
transId1
=
tTransId1
;
tcIndxReq
->
transId1
=
tTransId1
;
tcIndxReq
->
transId2
=
tTransId2
;
tcIndxReq
->
transId2
=
tTransId2
;
...
@@ -723,23 +735,10 @@ NdbIndexOperation::receiveTCINDXREF( NdbApiSignal* aSignal)
...
@@ -723,23 +735,10 @@ NdbIndexOperation::receiveTCINDXREF( NdbApiSignal* aSignal)
theStatus
=
Finished
;
theStatus
=
Finished
;
theNdbCon
->
theReturnStatus
=
NdbConnection
::
ReturnFailure
;
theNdbCon
->
theReturnStatus
=
NdbConnection
::
ReturnFailure
;
//--------------------------------------------------------------------------//
// If the transaction this operation belongs to consists only of simple reads
// we set the error code on the transaction object.
// If the transaction consists of other types of operations we set
// the error code only on the operation since the simple read is not really
// part of this transaction and we can not decide the status of the whole
// transaction based on this operation.
//--------------------------------------------------------------------------//
Uint32
errorCode
=
tcIndxRef
->
errorCode
;
Uint32
errorCode
=
tcIndxRef
->
errorCode
;
if
(
theNdbCon
->
theSimpleState
==
0
)
{
theError
.
code
=
errorCode
;
theError
.
code
=
errorCode
;
theNdbCon
->
setOperationErrorCodeAbort
(
errorCode
);
theNdbCon
->
setOperationErrorCodeAbort
(
errorCode
);
return
theNdbCon
->
OpCompleteFailure
(
theNdbCon
->
m_abortOption
);
return
theNdbCon
->
OpCompleteFailure
();
}
else
{
theError
.
code
=
errorCode
;
return
theNdbCon
->
OpCompleteSuccess
();
}
}
//NdbIndexOperation::receiveTCINDXREF()
}
//NdbIndexOperation::receiveTCINDXREF()
...
...
ndb/src/ndbapi/NdbOperationDefine.cpp
View file @
087a694f
...
@@ -116,7 +116,7 @@ NdbOperation::readTuple(NdbOperation::LockMode lm)
...
@@ -116,7 +116,7 @@ NdbOperation::readTuple(NdbOperation::LockMode lm)
return
readTupleExclusive
();
return
readTupleExclusive
();
break
;
break
;
case
LM_CommittedRead
:
case
LM_CommittedRead
:
return
readTuple
();
return
committedRead
();
break
;
break
;
default:
default:
return
-
1
;
return
-
1
;
...
@@ -191,18 +191,24 @@ NdbOperation::readTupleExclusive()
...
@@ -191,18 +191,24 @@ NdbOperation::readTupleExclusive()
int
int
NdbOperation
::
simpleRead
()
NdbOperation
::
simpleRead
()
{
{
/**
* Currently/still disabled
*/
return
readTuple
();
#if 0
int tErrorLine = theErrorLine;
int tErrorLine = theErrorLine;
if (theStatus == Init) {
if (theStatus == Init) {
theStatus = OperationDefined;
theStatus = OperationDefined;
theOperationType = ReadRequest;
theOperationType = ReadRequest;
theSimpleIndicator = 1;
theSimpleIndicator = 1;
theErrorLine = tErrorLine++;
theErrorLine = tErrorLine++;
theLockMode
=
LM_
Committed
Read
;
theLockMode = LM_Read;
return 0;
return 0;
} else {
} else {
setErrorCode(4200);
setErrorCode(4200);
return -1;
return -1;
}//if
}//if
#endif
}
//NdbOperation::simpleRead()
}
//NdbOperation::simpleRead()
/*****************************************************************************
/*****************************************************************************
...
...
ndb/src/ndbapi/NdbOperationExec.cpp
View file @
087a694f
...
@@ -161,28 +161,17 @@ NdbOperation::prepareSend(Uint32 aTC_ConnectPtr, Uint64 aTransId)
...
@@ -161,28 +161,17 @@ NdbOperation::prepareSend(Uint32 aTC_ConnectPtr, Uint64 aTransId)
tTransId1
=
(
Uint32
)
aTransId
;
tTransId1
=
(
Uint32
)
aTransId
;
tTransId2
=
(
Uint32
)
(
aTransId
>>
32
);
tTransId2
=
(
Uint32
)
(
aTransId
>>
32
);
//-------------------------------------------------------------
Uint8
tSimpleIndicator
=
theSimpleIndicator
;
// Simple is simple if simple or both start and commit is set.
//-------------------------------------------------------------
// Temporarily disable simple stuff
Uint8
tSimpleIndicator
=
0
;
// Uint8 tSimpleIndicator = theSimpleIndicator;
Uint8
tCommitIndicator
=
theCommitIndicator
;
Uint8
tCommitIndicator
=
theCommitIndicator
;
Uint8
tStartIndicator
=
theStartIndicator
;
Uint8
tStartIndicator
=
theStartIndicator
;
// if ((theNdbCon->theLastOpInList == this) && (theCommitIndicator == 0))
Uint8
tInterpretIndicator
=
theInterpretIndicator
;
// abort();
// Temporarily disable simple stuff
Uint8
tSimpleAlt
=
0
;
// Uint8 tSimpleAlt = tStartIndicator & tCommitIndicator;
tSimpleIndicator
=
tSimpleIndicator
|
tSimpleAlt
;
//-------------------------------------------------------------
//-------------------------------------------------------------
// Simple state is set if start and commit is set and it is
// Simple state is set if start and commit is set and it is
// a read request. Otherwise it is set to zero.
// a read request. Otherwise it is set to zero.
//-------------------------------------------------------------
//-------------------------------------------------------------
Uint8
tReadInd
=
(
theOperationType
==
ReadRequest
);
Uint8
tReadInd
=
(
theOperationType
==
ReadRequest
);
Uint8
tSimpleState
=
tReadInd
&
tSimpleAlt
;
Uint8
tSimpleState
=
tReadInd
&
tSimpleIndicator
;
theNdbCon
->
theSimpleState
=
tSimpleState
;
tcKeyReq
->
transId1
=
tTransId1
;
tcKeyReq
->
transId1
=
tTransId1
;
tcKeyReq
->
transId2
=
tTransId2
;
tcKeyReq
->
transId2
=
tTransId2
;
...
@@ -197,7 +186,6 @@ NdbOperation::prepareSend(Uint32 aTC_ConnectPtr, Uint64 aTransId)
...
@@ -197,7 +186,6 @@ NdbOperation::prepareSend(Uint32 aTC_ConnectPtr, Uint64 aTransId)
tcKeyReq
->
setSimpleFlag
(
tReqInfo
,
tSimpleIndicator
);
tcKeyReq
->
setSimpleFlag
(
tReqInfo
,
tSimpleIndicator
);
tcKeyReq
->
setCommitFlag
(
tReqInfo
,
tCommitIndicator
);
tcKeyReq
->
setCommitFlag
(
tReqInfo
,
tCommitIndicator
);
tcKeyReq
->
setStartFlag
(
tReqInfo
,
tStartIndicator
);
tcKeyReq
->
setStartFlag
(
tReqInfo
,
tStartIndicator
);
const
Uint8
tInterpretIndicator
=
theInterpretIndicator
;
tcKeyReq
->
setInterpretedFlag
(
tReqInfo
,
tInterpretIndicator
);
tcKeyReq
->
setInterpretedFlag
(
tReqInfo
,
tInterpretIndicator
);
Uint8
tDirtyIndicator
=
theDirtyIndicator
;
Uint8
tDirtyIndicator
=
theDirtyIndicator
;
...
@@ -208,6 +196,9 @@ NdbOperation::prepareSend(Uint32 aTC_ConnectPtr, Uint64 aTransId)
...
@@ -208,6 +196,9 @@ NdbOperation::prepareSend(Uint32 aTC_ConnectPtr, Uint64 aTransId)
tcKeyReq
->
setDirtyFlag
(
tReqInfo
,
tDirtyIndicator
);
tcKeyReq
->
setDirtyFlag
(
tReqInfo
,
tDirtyIndicator
);
tcKeyReq
->
setOperationType
(
tReqInfo
,
tOperationType
);
tcKeyReq
->
setOperationType
(
tReqInfo
,
tOperationType
);
tcKeyReq
->
setKeyLength
(
tReqInfo
,
tTupKeyLen
);
tcKeyReq
->
setKeyLength
(
tReqInfo
,
tTupKeyLen
);
// A simple read is always ignore error
abortOption
=
tSimpleIndicator
?
IgnoreError
:
abortOption
;
tcKeyReq
->
setAbortOption
(
tReqInfo
,
abortOption
);
tcKeyReq
->
setAbortOption
(
tReqInfo
,
abortOption
);
Uint8
tDistrKeyIndicator
=
theDistrKeyIndicator
;
Uint8
tDistrKeyIndicator
=
theDistrKeyIndicator
;
...
@@ -551,25 +542,16 @@ NdbOperation::receiveTCKEYREF( NdbApiSignal* aSignal)
...
@@ -551,25 +542,16 @@ NdbOperation::receiveTCKEYREF( NdbApiSignal* aSignal)
}
//if
}
//if
theStatus
=
Finished
;
theStatus
=
Finished
;
theNdbCon
->
theReturnStatus
=
NdbConnection
::
ReturnFailure
;
theNdbCon
->
theReturnStatus
=
NdbConnection
::
ReturnFailure
;
//-------------------------------------------------------------------------//
// If the transaction this operation belongs to consists only of simple reads
theError
.
code
=
aSignal
->
readData
(
4
);
// we set the error code on the transaction object.
theNdbCon
->
setOperationErrorCodeAbort
(
aSignal
->
readData
(
4
));
// If the transaction consists of other types of operations we set
// the error code only on the operation since the simple read is not really
if
(
theOperationType
!=
ReadRequest
||
!
theSimpleIndicator
)
// not simple read
// part of this transaction and we can not decide the status of the whole
return
theNdbCon
->
OpCompleteFailure
(
theNdbCon
->
m_abortOption
);
// transaction based on this operation.
//-------------------------------------------------------------------------//
// Simple read is always ignore error
if
(
theNdbCon
->
theSimpleState
==
0
)
{
return
theNdbCon
->
OpCompleteFailure
(
IgnoreError
);
theError
.
code
=
aSignal
->
readData
(
4
);
theNdbCon
->
setOperationErrorCodeAbort
(
aSignal
->
readData
(
4
));
return
theNdbCon
->
OpCompleteFailure
();
}
else
{
theError
.
code
=
aSignal
->
readData
(
4
);
return
theNdbCon
->
OpCompleteSuccess
();
}
}
//NdbOperation::receiveTCKEYREF()
}
//NdbOperation::receiveTCKEYREF()
...
...
ndb/src/ndbapi/NdbReceiver.cpp
View file @
087a694f
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#include <AttributeHeader.hpp>
#include <AttributeHeader.hpp>
#include <NdbConnection.hpp>
#include <NdbConnection.hpp>
#include <TransporterFacade.hpp>
#include <TransporterFacade.hpp>
#include <signaldata/TcKeyConf.hpp>
NdbReceiver
::
NdbReceiver
(
Ndb
*
aNdb
)
:
NdbReceiver
::
NdbReceiver
(
Ndb
*
aNdb
)
:
theMagicNumber
(
0
),
theMagicNumber
(
0
),
...
@@ -249,10 +250,11 @@ NdbReceiver::execTRANSID_AI(const Uint32* aDataPtr, Uint32 aLength)
...
@@ -249,10 +250,11 @@ NdbReceiver::execTRANSID_AI(const Uint32* aDataPtr, Uint32 aLength)
/**
/**
* Update m_received_result_length
* Update m_received_result_length
*/
*/
Uint32
exp
=
m_expected_result_length
;
Uint32
tmp
=
m_received_result_length
+
aLength
;
Uint32
tmp
=
m_received_result_length
+
aLength
;
m_received_result_length
=
tmp
;
m_received_result_length
=
tmp
;
return
(
tmp
==
m_expected_result_length
?
1
:
0
);
return
(
tmp
==
exp
||
(
exp
>
TcKeyConf
::
SimpleReadBit
)
?
1
:
0
);
}
}
int
int
...
...
ndb/src/ndbapi/NdbScanOperation.cpp
View file @
087a694f
...
@@ -908,6 +908,7 @@ NdbScanOperation::takeOverScanOp(OperationType opType, NdbConnection* pTrans){
...
@@ -908,6 +908,7 @@ NdbScanOperation::takeOverScanOp(OperationType opType, NdbConnection* pTrans){
if
(
newOp
==
NULL
){
if
(
newOp
==
NULL
){
return
NULL
;
return
NULL
;
}
}
pTrans
->
theSimpleState
=
0
;
const
Uint32
len
=
(
tRecAttr
->
attrSize
()
*
tRecAttr
->
arraySize
()
+
3
)
/
4
-
1
;
const
Uint32
len
=
(
tRecAttr
->
attrSize
()
*
tRecAttr
->
arraySize
()
+
3
)
/
4
-
1
;
...
...
ndb/src/ndbapi/Ndbinit.cpp
View file @
087a694f
...
@@ -107,8 +107,6 @@ void Ndb::setup(Ndb_cluster_connection *ndb_cluster_connection,
...
@@ -107,8 +107,6 @@ void Ndb::setup(Ndb_cluster_connection *ndb_cluster_connection,
theOpIdleList
=
NULL
;
theOpIdleList
=
NULL
;
theScanOpIdleList
=
NULL
;
theScanOpIdleList
=
NULL
;
theIndexOpIdleList
=
NULL
;
theIndexOpIdleList
=
NULL
;
// theSchemaConIdleList= NULL;
// theSchemaConToNdbList= NULL;
theTransactionList
=
NULL
;
theTransactionList
=
NULL
;
theConnectionArray
=
NULL
;
theConnectionArray
=
NULL
;
theRecAttrIdleList
=
NULL
;
theRecAttrIdleList
=
NULL
;
...
@@ -134,10 +132,13 @@ void Ndb::setup(Ndb_cluster_connection *ndb_cluster_connection,
...
@@ -134,10 +132,13 @@ void Ndb::setup(Ndb_cluster_connection *ndb_cluster_connection,
fullyQualifiedNames
=
true
;
fullyQualifiedNames
=
true
;
#ifdef POORMANSPURIFY
cgetSignals
=
0
;
cgetSignals
=
0
;
cfreeSignals
=
0
;
cfreeSignals
=
0
;
cnewSignals
=
0
;
cnewSignals
=
0
;
creleaseSignals
=
0
;
creleaseSignals
=
0
;
#endif
theError
.
code
=
0
;
theError
.
code
=
0
;
theNdbObjectIdMap
=
new
NdbObjectIdMap
(
1024
,
1024
);
theNdbObjectIdMap
=
new
NdbObjectIdMap
(
1024
,
1024
);
...
...
ndb/src/ndbapi/Ndblist.cpp
View file @
087a694f
...
@@ -432,11 +432,15 @@ Ndb::getSignal()
...
@@ -432,11 +432,15 @@ Ndb::getSignal()
theSignalIdleList
=
tSignalNext
;
theSignalIdleList
=
tSignalNext
;
}
else
{
}
else
{
tSignal
=
new
NdbApiSignal
(
theMyRef
);
tSignal
=
new
NdbApiSignal
(
theMyRef
);
#ifdef POORMANSPURIFY
cnewSignals
++
;
cnewSignals
++
;
#endif
if
(
tSignal
!=
NULL
)
if
(
tSignal
!=
NULL
)
tSignal
->
next
(
NULL
);
tSignal
->
next
(
NULL
);
}
}
#ifdef POORMANSPURIFY
cgetSignals
++
;
cgetSignals
++
;
#endif
return
tSignal
;
return
tSignal
;
}
}
...
@@ -605,7 +609,9 @@ Ndb::releaseSignal(NdbApiSignal* aSignal)
...
@@ -605,7 +609,9 @@ Ndb::releaseSignal(NdbApiSignal* aSignal)
}
}
#endif
#endif
#endif
#endif
#ifdef POORMANSPURIFY
creleaseSignals
++
;
creleaseSignals
++
;
#endif
aSignal
->
next
(
theSignalIdleList
);
aSignal
->
next
(
theSignalIdleList
);
theSignalIdleList
=
aSignal
;
theSignalIdleList
=
aSignal
;
}
}
...
@@ -769,7 +775,9 @@ Ndb::freeSignal()
...
@@ -769,7 +775,9 @@ Ndb::freeSignal()
NdbApiSignal
*
tSignal
=
theSignalIdleList
;
NdbApiSignal
*
tSignal
=
theSignalIdleList
;
theSignalIdleList
=
tSignal
->
next
();
theSignalIdleList
=
tSignal
->
next
();
delete
tSignal
;
delete
tSignal
;
#ifdef POORMANSPURIFY
cfreeSignals
++
;
cfreeSignals
++
;
#endif
}
}
void
void
...
...
ndb/test/ndbapi/testOperations.cpp
View file @
087a694f
...
@@ -86,7 +86,7 @@ OperationTestCase matrix[] = {
...
@@ -86,7 +86,7 @@ OperationTestCase matrix[] = {
{
"DeleteRead"
,
true
,
"DELETE"
,
0
,
0
,
"READ"
,
626
,
0
,
0
,
0
},
{
"DeleteRead"
,
true
,
"DELETE"
,
0
,
0
,
"READ"
,
626
,
0
,
0
,
0
},
{
"DeleteReadEx"
,
true
,
"DELETE"
,
0
,
0
,
"READ-EX"
,
626
,
0
,
0
,
0
},
{
"DeleteReadEx"
,
true
,
"DELETE"
,
0
,
0
,
"READ-EX"
,
626
,
0
,
0
,
0
},
{
"DeleteSimpleRead"
,
true
,
"DELETE"
,
0
,
0
,
"S-READ"
,
626
,
0
,
0
,
0
},
{
"DeleteSimpleRead"
,
true
,
"DELETE"
,
0
,
0
,
"S-READ"
,
626
,
0
,
0
,
0
},
{
"DeleteDirtyRead"
,
true
,
"DELETE"
,
0
,
0
,
"D-READ"
,
626
,
0
,
0
,
0
},
{
"DeleteDirtyRead"
,
true
,
"DELETE"
,
0
,
0
,
"D-READ"
,
626
,
0
,
626
,
0
},
{
"DeleteInsert"
,
true
,
"DELETE"
,
0
,
0
,
"INSERT"
,
0
,
1
,
0
,
1
},
{
"DeleteInsert"
,
true
,
"DELETE"
,
0
,
0
,
"INSERT"
,
0
,
1
,
0
,
1
},
{
"DeleteUpdate"
,
true
,
"DELETE"
,
0
,
0
,
"UPDATE"
,
626
,
1
,
0
,
0
},
{
"DeleteUpdate"
,
true
,
"DELETE"
,
0
,
0
,
"UPDATE"
,
626
,
1
,
0
,
0
},
{
"DeleteDelete"
,
true
,
"DELETE"
,
0
,
0
,
"DELETE"
,
626
,
0
,
0
,
0
}
{
"DeleteDelete"
,
true
,
"DELETE"
,
0
,
0
,
"DELETE"
,
626
,
0
,
0
,
0
}
...
...
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