diff options
author | unknown <mskold/marty@mysql.com/quadfish.(none)> | 2008-01-22 15:04:56 +0100 |
---|---|---|
committer | unknown <mskold/marty@mysql.com/quadfish.(none)> | 2008-01-22 15:04:56 +0100 |
commit | 0d9ed67997457ec0066f9854a876d2c5aa2fbd9a (patch) | |
tree | 1faac7492f8b0b54dd7b8929c76e3a598ed5d574 /ndb | |
parent | 1486a5a7442dd18d9f1b5b3291e885eff53b01b5 (diff) | |
download | mariadb-git-0d9ed67997457ec0066f9854a876d2c5aa2fbd9a.tar.gz |
Fixed incorrect signature comment
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/src/ndbapi/Ndb.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ndb/src/ndbapi/Ndb.cpp b/ndb/src/ndbapi/Ndb.cpp index 350b66f2aee..f55986d2e6b 100644 --- a/ndb/src/ndbapi/Ndb.cpp +++ b/ndb/src/ndbapi/Ndb.cpp @@ -768,7 +768,7 @@ Ndb::getNodeId() /**************************************************************************** int getAutoIncrementValue( const char* aTableName, - Uint64 & tupleId, + Uint64 & autoValue, Uint32 cacheSize, Uint64 step, Uint64 start); @@ -895,12 +895,10 @@ Ndb::getTupleIdFromNdb(Ndb_local_table_info* info, /**************************************************************************** int readAutoIncrementValue( const char* aTableName, - Uint64 & autoValue, - bool modify); + Uint64 & autoValue); Parameters: aTableName (IN) : The table name. autoValue (OUT) : The current autoincrement value - modify (IN) : Modify existing value (not initialization) Returns: 0 if succesful, -1 if error encountered Remark: Returns the current autoincrement value to the application. ****************************************************************************/ |