Merge remote-tracking branch 'origin/feature/vnode' into feature/3.0_liaohj

This commit is contained in:
Haojun Liao 2022-01-04 10:52:45 +08:00
commit 58f28f4c98
2 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,9 @@
"ms-vscode.cmake-tools",
"austin.code-gnu-global",
"visualstudioexptteam.vscodeintel",
"eamodio.gitlens"
"eamodio.gitlens",
"matepek.vscode-catch2-test-adapter",
"spmeesseman.vscode-taskexplorer"
],
// Use 'forwardPorts' to make a list of ports inside the container available locally.

View File

@ -140,6 +140,7 @@ void *tSVCreateTbBatchReqDeserialize(void *buf, SVCreateTbBatchReq *pReq) {
buf = taosDecodeFixedU64(buf, &pReq->ver);
buf = taosDecodeFixedU32(buf, &nsize);
pReq->pArray = taosArrayInit(nsize, sizeof(SVCreateTbReq));
for (size_t i = 0; i < nsize; i++) {
SVCreateTbReq req;
buf = tDeserializeSVCreateTbReq(buf, &req);