mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
wl2135 - index restart
mysql-test/r/ndb_index_ordered.result: test case mysql-test/t/ndb_index_ordered.test: test case ndb/include/kernel/signaldata/ScanTab.hpp: Split exclusive/keyinfo ndb/include/ndbapi/NdbIndexScanOperation.hpp: Add possibility retreive sorted flag ndb/include/ndbapi/NdbOperation.hpp: Add possibility retreive lock mode ndb/include/ndbapi/NdbResultSet.hpp: Add possibility to get operation ndb/src/common/debugger/signaldata/ScanTab.cpp: Split exclusive/keyinfo ndb/src/kernel/blocks/dbtc/Dbtc.hpp: Store flags in ScanFragReq::requestInfo format ndb/src/kernel/blocks/dbtc/DbtcMain.cpp: Store flags in ScanFragReq::requestInfo format ndb/src/ndbapi/NdbOperationDefine.cpp: Keep theLockMode up-to-date ndb/src/ndbapi/NdbScanOperation.cpp: Keep theLockMode up-to-date sql/ha_ndbcluster.cc: Use NdbIndexScanOperation::reset_bounds when performing second index access
This commit is contained in:
@ -717,6 +717,8 @@ public:
|
||||
NotDefined ///< Internal for debugging
|
||||
};
|
||||
|
||||
LockMode getLockMode() const { return theLockMode; }
|
||||
|
||||
protected:
|
||||
/******************************************************************************
|
||||
* These are the methods used to create and delete the NdbOperation objects.
|
||||
@ -893,7 +895,7 @@ protected:
|
||||
// currently defined
|
||||
OperationType theOperationType; // Read Request, Update Req......
|
||||
|
||||
Uint8 theLockMode; // Can be set to WRITE if read operation
|
||||
LockMode theLockMode; // Can be set to WRITE if read operation
|
||||
OperationStatus theStatus; // The status of the operation.
|
||||
Uint32 theMagicNumber; // Magic number to verify that object
|
||||
// is correct
|
||||
|
Reference in New Issue
Block a user