Skip to content

Commit

Permalink
Merge pull request #22732 from taosdata/fix/TD-22062-3.1
Browse files Browse the repository at this point in the history
fix/TD-22062
  • Loading branch information
gccgdb1234 committed Sep 5, 2023
2 parents 515796f + 4112037 commit 2736fb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/dnode/mnode/impl/src/mndStb.c
Expand Up @@ -2342,9 +2342,9 @@ static int32_t mndProcessAlterStbReq(SRpcMsg *pReq) {
alterReq.alterType, alterReq.numOfFields, alterReq.ttl);

SName name = {0};
tNameFromString(&name, pDb->name, T_NAME_ACCT | T_NAME_DB);
tNameFromString(&name, alterReq.name, T_NAME_ACCT | T_NAME_DB | T_NAME_TABLE);

auditRecord(pReq, pMnode->clusterId, "alterStb", name.dbname, alterReq.name, detail);
auditRecord(pReq, pMnode->clusterId, "alterStb", name.dbname, name.tname, detail);

_OVER:
if (code != 0 && code != TSDB_CODE_ACTION_IN_PROGRESS) {
Expand Down

0 comments on commit 2736fb4

Please sign in to comment.