Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: log error
  • Loading branch information
facetosea committed Oct 16, 2025
commit a2b4cf5df780243a770b0983c3b94663b0331d4b
3 changes: 2 additions & 1 deletion source/libs/catalog/src/ctgCache.c
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,8 @@ int32_t ctgReadTbMetaFromCache(SCatalog *pCtg, SCtgTbMetaCtx *ctx, STableMeta **
SCtgDBCache *dbCache = NULL;
SCtgTbCache *tbCache = NULL;
if(*pTableMeta) {
ctgError("Expected pTableMeta to be NULL");
ctgError("Expected pTableMeta to be NULL, uid:0x%" PRIx64 ", suid:0x%" PRIx64, (*pTableMeta)->uid,
(*pTableMeta)->suid);
return TSDB_CODE_INVALID_PARA;
}

Expand Down
Loading