diff --git a/src/vnode/tsdb/src/tsdbCache.c b/src/vnode/tsdb/src/tsdbCache.c index ef6af018c8..f68c50c386 100644 --- a/src/vnode/tsdb/src/tsdbCache.c +++ b/src/vnode/tsdb/src/tsdbCache.c @@ -2,21 +2,19 @@ #include "tsdbCache.h" - STsdbCache *tsdbCreateCache(int32_t numOfBlocks) { - STsdbCache *pCacheHandle = (STsdbCache *)malloc(sizeof(STsdbCache)); - if (pCacheHandle == NULL) { - // TODO : deal with the error - return NULL; - } - - return pCacheHandle; + STsdbCache *pCacheHandle = (STsdbCache *)malloc(sizeof(STsdbCache)); + if (pCacheHandle == NULL) { + // TODO : deal with the error + return NULL; + } + return pCacheHandle; } int32_t tsdbFreeCache(STsdbCache *pHandle) { return 0; } void *tsdbAllocFromCache(STsdbCache *pCache, int64_t bytes) { - // TODO: implement here - return NULL; + // TODO: implement here + return NULL; } \ No newline at end of file