fix(query): fix error.

This commit is contained in:
Haojun Liao 2022-11-18 17:38:31 +08:00
parent 066735964d
commit d3452f6630
1 changed files with 1 additions and 1 deletions

View File

@ -495,9 +495,9 @@ int32_t metaUidFilterCachePut(SMeta* pMeta, uint64_t suid, const void* pKey, int
STagFilterResEntry* p = taosMemoryMalloc(sizeof(STagFilterResEntry));
p->qTimes = 0;
tdListInit(&p->list, keyLen);
taosHashPut(pTableEntry, &suid, sizeof(uint64_t), pEntry, POINTER_BYTES);
pEntry = &p;
taosHashPut(pTableEntry, &suid, sizeof(uint64_t), pEntry, POINTER_BYTES);
}
tdListAppend(&(*(STagFilterResEntry**)pEntry)->list, pKey);