diff options
author | unknown <joreland@mysql.com> | 2004-07-06 08:36:52 +0200 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2004-07-06 08:36:52 +0200 |
commit | 17735954947a452dbf272aca8a0b388a6a37317d (patch) | |
tree | 0dd5dd9aae7a21393a794a71682b1fc96eafcf0a /ndb/include/ndbapi | |
parent | 3f3ea3037a5575a4f2121592ddc40c3441962c15 (diff) | |
download | mariadb-git-17735954947a452dbf272aca8a0b388a6a37317d.tar.gz |
Fixed memory handling
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp:
longable when routed
ndb/src/kernel/blocks/dbtup/DbtupBuffer.cpp:
longable when routed
ndb/src/ndbapi/NdbDictionaryImpl.cpp:
Init blob count correctly
ndb/src/ndbapi/NdbIndexOperation.cpp:
Receiver::init
ndb/src/ndbapi/NdbOperation.cpp:
Receiver::init
release memory
Diffstat (limited to 'ndb/include/ndbapi')
-rw-r--r-- | ndb/include/ndbapi/NdbReceiver.hpp | 2 | ||||
-rw-r--r-- | ndb/include/ndbapi/NdbScanOperation.hpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/ndb/include/ndbapi/NdbReceiver.hpp b/ndb/include/ndbapi/NdbReceiver.hpp index 5f69887f402..13898fc8e5f 100644 --- a/ndb/include/ndbapi/NdbReceiver.hpp +++ b/ndb/include/ndbapi/NdbReceiver.hpp @@ -37,7 +37,7 @@ public: }; NdbReceiver(Ndb *aNdb); - void init(ReceiverType type, void* owner, bool keyInfo); + void init(ReceiverType type, void* owner); void release(); ~NdbReceiver(); diff --git a/ndb/include/ndbapi/NdbScanOperation.hpp b/ndb/include/ndbapi/NdbScanOperation.hpp index ff7939ce66e..6ebf5a083f8 100644 --- a/ndb/include/ndbapi/NdbScanOperation.hpp +++ b/ndb/include/ndbapi/NdbScanOperation.hpp @@ -131,7 +131,8 @@ protected: int doSendScan(int ProcessorId); int prepareSendScan(Uint32 TC_ConnectPtr, Uint64 TransactionId); - int fix_receivers(Uint32 parallel, bool keyInfo); + int fix_receivers(Uint32 parallel); + Uint32* m_array; // containing all arrays below Uint32 m_allocated_receivers; NdbReceiver** m_receivers; // All receivers |