mirror of
https://github.com/MariaDB/server.git
synced 2025-11-15 09:02:33 +03:00
wl#2126 - read_multi_range ndb part
This commit is contained in:
@@ -718,6 +718,7 @@ public:
|
||||
};
|
||||
|
||||
LockMode getLockMode() const { return theLockMode; }
|
||||
void setAbortOption(Int8 ao) { m_abortOption = ao; }
|
||||
|
||||
/**
|
||||
* Set/get distribution/partition key
|
||||
@@ -746,10 +747,13 @@ protected:
|
||||
void initInterpreter();
|
||||
|
||||
void next(NdbOperation*); // Set next pointer
|
||||
|
||||
NdbOperation* next(); // Get next pointer
|
||||
public:
|
||||
const NdbOperation* next() const;
|
||||
protected:
|
||||
|
||||
enum OperationStatus{
|
||||
enum OperationStatus
|
||||
{
|
||||
Init,
|
||||
OperationDefined,
|
||||
TupleKeyDefined,
|
||||
@@ -995,6 +999,12 @@ NdbOperation::next()
|
||||
return theNext;
|
||||
}
|
||||
|
||||
inline
|
||||
const NdbOperation*
|
||||
NdbOperation::next() const
|
||||
{
|
||||
return theNext;
|
||||
}
|
||||
/******************************************************************************
|
||||
OperationStatus Status();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user