diff --git a/src/tsdb/src/tsdbMeta.c b/src/tsdb/src/tsdbMeta.c index b725cd29cb6c87921fc206fa70247d223d04b908..11eab5604707e8948bb5af96c2d7c1d55bcf1c16 100644 --- a/src/tsdb/src/tsdbMeta.c +++ b/src/tsdb/src/tsdbMeta.c @@ -219,8 +219,9 @@ int tsdbDumpTables(STsdbRepo *pRepo, uint64_t qId) { for (int32_t i = 0; i < pMeta->maxTables; ++i) { if (pMeta->tables[i] != NULL) { STable *pTable = pMeta->tables[i]; - tsdbInfo("vgId:%d QID:%" PRIu64 " stb:%s tbn:%s tid:%d uid:%" PRIu64, REPO_ID(pRepo), qId, - pTable->pSuper ? pTable->pSuper->name->data : "", pTable->name->data, pTable->tableId.tid, + // keep the output format + tsdbInfo("vgId:%d QID:%" PRIu64 " stb:%s %s:%s tid:%d uid:%" PRIu64, REPO_ID(pRepo), qId, + pTable->pSuper ? pTable->pSuper->name->data : "", "msynctbn", pTable->name->data, pTable->tableId.tid, pTable->tableId.uid); } }