opt bloom filter

This commit is contained in:
54liuyao 2024-04-24 17:33:39 +08:00
parent 3300bf04c1
commit d8946dbedd
1 changed files with 7 additions and 7 deletions

View File

@ -180,6 +180,13 @@ void taosHashCancelIterate(SHashObj *pHashObj, void *p);
*/
void *taosHashGetKey(void *data, size_t *keyLen);
/**
* Get the corresponding value length for a given data in hash table
* @param data
* @return
*/
int32_t taosHashGetValueSize(void *data);
/**
* return the payload data with the specified key(reference number added)
*
@ -215,13 +222,6 @@ void taosHashSetFreeFp(SHashObj *pHashObj, _hash_free_fn_t fp);
int64_t taosHashGetCompTimes(SHashObj *pHashObj);
/**
* Get the corresponding value length for a given data in hash table
* @param data
* @return
*/
int32_t taosHashGetValueSize(void *data);
#ifdef __cplusplus
}
#endif