fix dependency for vnode
This commit is contained in:
parent
35749cb374
commit
99984adb45
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue