diff options
author | pekka@mysql.com <> | 2004-11-22 18:54:06 +0100 |
---|---|---|
committer | pekka@mysql.com <> | 2004-11-22 18:54:06 +0100 |
commit | 37f0ff9bc07abf4e41a53bd2285fe25bf1fdd8c4 (patch) | |
tree | 2096e1bde4e66383adac5422e21405f755dbe27b /ndb/include | |
parent | e1dc7b066c29d23eba0a02a4fb73eab50b515a65 (diff) | |
download | mariadb-git-37f0ff9bc07abf4e41a53bd2285fe25bf1fdd8c4.tar.gz |
ndb: fix blob performance in long transactions
Diffstat (limited to 'ndb/include')
-rw-r--r-- | ndb/include/ndbapi/NdbConnection.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ndb/include/ndbapi/NdbConnection.hpp b/ndb/include/ndbapi/NdbConnection.hpp index 7af5d27b922..256199dced7 100644 --- a/ndb/include/ndbapi/NdbConnection.hpp +++ b/ndb/include/ndbapi/NdbConnection.hpp @@ -607,8 +607,8 @@ private: NdbOperation* theLastExecOpInList; // Last executing operation in list. - NdbOperation* theCompletedFirstOp; // First operation in completed - // operation list. + NdbOperation* theCompletedFirstOp; // First & last operation in completed + NdbOperation* theCompletedLastOp; // operation list. Uint32 theNoOfOpSent; // How many operations have been sent Uint32 theNoOfOpCompleted; // How many operations have completed |