fix:get meta if cols change in schemaless
This commit is contained in:
parent
3f82427e7d
commit
2bd4c09568
|
@ -563,6 +563,11 @@ static int32_t smlModifyDBSchemas(SSmlHandle *info) {
|
||||||
if (code != TSDB_CODE_SUCCESS) {
|
if (code != TSDB_CODE_SUCCESS) {
|
||||||
goto end;
|
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;
|
needCheckMeta = true;
|
||||||
|
|
Loading…
Reference in New Issue