fix(query): remove unused hash.

This commit is contained in:
Haojun Liao 2023-02-28 16:04:38 +08:00
parent f1f9e570e6
commit 281c774f6e
1 changed files with 0 additions and 5 deletions

View File

@ -50,11 +50,6 @@ uint32_t taosDJB2Hash(const char *key, uint32_t len) {
return hash;
}
uint32_t xxHash(const char *key, uint32_t len) {
int32_t seed = 0xcc9e2d51;
return XXH32(key, len, seed);
}
uint32_t MurmurHash3_32(const char *key, uint32_t len) {
const uint8_t *data = (const uint8_t *)key;
const int32_t nblocks = len >> 2u;