fix:get meta if cols change in schemaless

This commit is contained in:
wangmm0220 2022-11-30 18:02:30 +08:00
parent 3f82427e7d
commit 2bd4c09568
1 changed files with 5 additions and 0 deletions

View File

@ -563,6 +563,11 @@ static int32_t smlModifyDBSchemas(SSmlHandle *info) {
if (code != TSDB_CODE_SUCCESS) {
goto end;
}
code = catalogGetSTableMeta(info->pCatalog, &conn, &pName, &pTableMeta);
if (code != TSDB_CODE_SUCCESS) {
uError("SML:0x%" PRIx64 " catalogGetSTableMeta failed. super table name %s", info->id, pName.tname);
goto end;
}
}
needCheckMeta = true;