fix dependency for vnode

This commit is contained in:
Liu Jicong 2022-01-21 16:13:11 +08:00
parent 35749cb374
commit 99984adb45
2 changed files with 2 additions and 1 deletions

View File

@ -375,7 +375,6 @@ static FORCE_INLINE void *taosDecodeStringTo(void *buf, char *value) {
static FORCE_INLINE int taosEncodeBinary(void **buf, const void *value, int32_t valueLen) {
int tlen = 0;
tlen += taosEncodeVariantI32(buf, valueLen);
if (buf != NULL) {
memcpy(*buf, value, valueLen);
*buf = POINTER_SHIFT(*buf, valueLen);

View File

@ -62,10 +62,12 @@ qTaskInfo_t qCreateStreamExecTaskInfo(SSubQueryMsg* pMsg, void* streamReadHandle
}
// print those info into log
#if 0
pMsg->sId = pMsg->sId;
pMsg->queryId = pMsg->queryId;
pMsg->taskId = pMsg->taskId;
pMsg->contentLen = pMsg->contentLen;
#endif
struct SSubplan* plan = NULL;
int32_t code = qStringToSubplan(pMsg->msg, &plan);