From 7f80c1e96906e0f2470d6a84a9a624f660748492 Mon Sep 17 00:00:00 2001 From: Liu Jicong Date: Wed, 29 Dec 2021 18:00:42 +0800 Subject: [PATCH] fix compile --- include/common/tmsg.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/common/tmsg.h b/include/common/tmsg.h index 874317d91b..ba8bb7ca2f 100644 --- a/include/common/tmsg.h +++ b/include/common/tmsg.h @@ -1106,7 +1106,8 @@ static FORCE_INLINE int tSerializeSCMCreateTopicReq(void** buf, const SCMCreateT static FORCE_INLINE void* tDeserializeSCMCreateTopicReq(void* buf, SCMCreateTopicReq* pReq) { buf = taosDecodeFixedI8(buf, &(pReq->igExists)); buf = taosDecodeString(buf, &(pReq->name)); - buf = taosDecodeString(buf, &(pReq->phyPlan)); + buf = taosDecodeString(buf, &(pReq->physicalPlan)); + buf = taosDecodeString(buf, &(pReq->logicalPlan)); return buf; }