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/NdbIndexScanOperation.hpp | |
parent | 4327c18b93c152067499f4c6866748a7fe438549 (diff) | |
download | mariadb-git-33465a14d1248629638a53153a3be7aa9a92dba2.tar.gz |
fixed a number of doxygen warnings
Diffstat (limited to 'ndb/include/ndbapi/NdbIndexScanOperation.hpp')
-rw-r--r-- | ndb/include/ndbapi/NdbIndexScanOperation.hpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ndb/include/ndbapi/NdbIndexScanOperation.hpp b/ndb/include/ndbapi/NdbIndexScanOperation.hpp index e1a646fa413..b91a2a90d11 100644 --- a/ndb/include/ndbapi/NdbIndexScanOperation.hpp +++ b/ndb/include/ndbapi/NdbIndexScanOperation.hpp @@ -45,7 +45,7 @@ public: * @returns 0 for success and -1 for failure * @see NdbScanOperation::readTuples */ - int readTuples(LockMode = LM_Read, + int readTuples(LockMode lock_mode = LM_Read, Uint32 batch = 0, Uint32 parallel = 0, bool order_by = false, @@ -90,15 +90,14 @@ public: * An index stores also all-NULL keys. Doing index scan with empty * bound set returns all table tuples. * - * @param attrName Attribute name, alternatively: - * @param anAttrId Index column id (starting from 0) + * @param attr Attribute name, alternatively: * @param type Type of bound * @param value Pointer to bound value, 0 for NULL * @param len Value length in bytes. * Fixed per datatype and can be omitted * @return 0 if successful otherwise -1 */ - int setBound(const char* attr, int type, const void* aValue, Uint32 len = 0); + int setBound(const char* attr, int type, const void* value, Uint32 len = 0); /** * Define bound on index key in range scan using index column id. |