diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-10 01:25:20 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-10 01:25:20 +0100 |
commit | 33465a14d1248629638a53153a3be7aa9a92dba2 (patch) | |
tree | 94a801d63c1cab60fde495f3a98b109239f8429e /ndb/include/ndbapi/NdbScanOperation.hpp | |
parent | 4327c18b93c152067499f4c6866748a7fe438549 (diff) | |
download | mariadb-git-33465a14d1248629638a53153a3be7aa9a92dba2.tar.gz |
fixed a number of doxygen warnings
Diffstat (limited to 'ndb/include/ndbapi/NdbScanOperation.hpp')
-rw-r--r-- | ndb/include/ndbapi/NdbScanOperation.hpp | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/ndb/include/ndbapi/NdbScanOperation.hpp b/ndb/include/ndbapi/NdbScanOperation.hpp index 7e3a0ed18b7..5da717148b5 100644 --- a/ndb/include/ndbapi/NdbScanOperation.hpp +++ b/ndb/include/ndbapi/NdbScanOperation.hpp @@ -70,7 +70,8 @@ public: * NdbOperation::getValue are updated with values * from the scanned tuple. * - * @param fetchAllowed If set to false, then fetching is disabled + * @param fetchAllowed If set to false, then fetching is disabled + * @param forceSend If true send will occur immediately (see @ref secAdapt) * * The NDB API will contact the NDB Kernel for more tuples * when necessary to do so unless you set the fetchAllowed @@ -122,6 +123,13 @@ public: * @return an NdbOperation or NULL. */ NdbOperation* updateCurrentTuple(); + /** + * Update current tuple + * + * @param updateTrans Transaction that should perform the update + * + * @return an NdbOperation or NULL. + */ NdbOperation* updateCurrentTuple(NdbTransaction* updateTrans); /** @@ -129,6 +137,13 @@ public: * @return 0 on success or -1 on failure */ int deleteCurrentTuple(); + /** + * Delete current tuple + * + * @param takeOverTransaction Transaction that should perform the delete + * + * @return 0 on success or -1 on failure + */ int deleteCurrentTuple(NdbTransaction* takeOverTransaction); /** |