mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 02:30:06 +01:00
Ndb.hpp:
Changed function attribute names to match implementation
This commit is contained in:
parent
a272be0c49
commit
f6f8dd3431
1 changed files with 7 additions and 7 deletions
|
@ -1386,22 +1386,22 @@ public:
|
|||
*
|
||||
* @param cacheSize number of values to cache in this Ndb object
|
||||
*
|
||||
* @return 0 or -1 on error, and tupleId in out parameter
|
||||
* @return 0 or -1 on error, and autoValue in out parameter
|
||||
*/
|
||||
int getAutoIncrementValue(const char* aTableName,
|
||||
Uint64 & tupleId, Uint32 cacheSize,
|
||||
Uint64 & autoValue, Uint32 cacheSize,
|
||||
Uint64 step = 1, Uint64 start = 1);
|
||||
int getAutoIncrementValue(const NdbDictionary::Table * aTable,
|
||||
Uint64 & tupleId, Uint32 cacheSize,
|
||||
Uint64 & autoValue, Uint32 cacheSize,
|
||||
Uint64 step = 1, Uint64 start = 1);
|
||||
int readAutoIncrementValue(const char* aTableName,
|
||||
Uint64 & tupleId);
|
||||
Uint64 & autoValue);
|
||||
int readAutoIncrementValue(const NdbDictionary::Table * aTable,
|
||||
Uint64 & tupleId);
|
||||
Uint64 & autoValue);
|
||||
int setAutoIncrementValue(const char* aTableName,
|
||||
Uint64 tupleId, bool modify);
|
||||
Uint64 autoValue, bool modify);
|
||||
int setAutoIncrementValue(const NdbDictionary::Table * aTable,
|
||||
Uint64 tupleId, bool modify);
|
||||
Uint64 autoValue, bool modify);
|
||||
private:
|
||||
int getTupleIdFromNdb(Ndb_local_table_info* info,
|
||||
Uint64 & tupleId, Uint32 cacheSize,
|
||||
|
|
Loading…
Add table
Reference in a new issue