diff options
author | unknown <joreland@mysql.com> | 2004-12-01 12:43:30 +0100 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2004-12-01 12:43:30 +0100 |
commit | 99880af843f5a89baa51389eaee325221df5879d (patch) | |
tree | 43c119cc06a6dd05632385858f9ed5fc4fc78405 /ndb/include/ndbapi/NdbOperation.hpp | |
parent | 34944e9567d7ba9d3eecbfb8154b2a6da99f911b (diff) | |
download | mariadb-git-99880af843f5a89baa51389eaee325221df5879d.tar.gz |
wl#2126 - ndb - Fix handling of null values wrt read multi range
mysql-test/r/ndb_read_multi_range.result:
Add tests of null handling to read_multi
mysql-test/t/ndb_read_multi_range.test:
Add tests of null handling to read_multi
ndb/include/ndbapi/NdbOperation.hpp:
Get recattr
ndb/include/ndbapi/NdbRecAttr.hpp:
Get recattr
sql/ha_ndbcluster.cc:
Fix handling of null values wrt read multi range
sql/ha_ndbcluster.h:
Fix handling of null values wrt read multi range
Diffstat (limited to 'ndb/include/ndbapi/NdbOperation.hpp')
-rw-r--r-- | ndb/include/ndbapi/NdbOperation.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ndb/include/ndbapi/NdbOperation.hpp b/ndb/include/ndbapi/NdbOperation.hpp index 1ca5b95840b..053413af090 100644 --- a/ndb/include/ndbapi/NdbOperation.hpp +++ b/ndb/include/ndbapi/NdbOperation.hpp @@ -750,6 +750,7 @@ protected: NdbOperation* next(); // Get next pointer public: const NdbOperation* next() const; + const NdbRecAttr* getFirstRecAttr() const; protected: enum OperationStatus @@ -1005,6 +1006,14 @@ NdbOperation::next() const { return theNext; } + +inline +const NdbRecAttr* +NdbOperation::getFirstRecAttr() const +{ + return theReceiver.theFirstRecAttr; +} + /****************************************************************************** OperationStatus Status(); |