fix:destroyBoundColInfo

This commit is contained in:
wangmm0220 2022-12-02 22:27:51 +08:00
parent 2c013b7ecf
commit af34349957
1 changed files with 2 additions and 2 deletions

View File

@ -329,8 +329,8 @@ void insDestroyBlockHashmap(SHashObj* pDataBlockHash) {
void** p1 = taosHashIterate(pDataBlockHash, NULL);
while (p1) {
STableDataBlocks* pBlocks = *p1;
insDestroyDataBlock(pBlocks);
SBoundColInfo* pBlocks = *p1;
destroyBoundColInfo(pBlocks);
p1 = taosHashIterate(pDataBlockHash, p1);
}