Merge pull request #10343 from taosdata/hotfix/catalog.bug2
fix dbid issue
This commit is contained in:
commit
69fecab78e
|
@ -126,7 +126,7 @@ static int vnodeGetTableMeta(SVnode *pVnode, SRpcMsg *pMsg) {
|
||||||
goto _exit;
|
goto _exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
metaRsp.dbId = htobe64(pVnode->config.dbId);
|
metaRsp.dbId = pVnode->config.dbId;
|
||||||
memcpy(metaRsp.dbFName, infoReq.dbFName, sizeof(metaRsp.dbFName));
|
memcpy(metaRsp.dbFName, infoReq.dbFName, sizeof(metaRsp.dbFName));
|
||||||
strcpy(metaRsp.tbName, infoReq.tbName);
|
strcpy(metaRsp.tbName, infoReq.tbName);
|
||||||
if (pTbCfg->type == META_CHILD_TABLE) {
|
if (pTbCfg->type == META_CHILD_TABLE) {
|
||||||
|
|
Loading…
Reference in New Issue