From b987d01ec4196efd0c07636365e3d3902f991443 Mon Sep 17 00:00:00 2001 From: factosea <285808407@qq.com> Date: Wed, 13 Mar 2024 15:23:05 +0800 Subject: [PATCH] delete test code --- source/common/src/tmsg.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source/common/src/tmsg.c b/source/common/src/tmsg.c index 86b84738b5..2942491dca 100644 --- a/source/common/src/tmsg.c +++ b/source/common/src/tmsg.c @@ -2977,8 +2977,6 @@ int32_t tDeserializeSTableCfgRsp(void *buf, int32_t bufLen, STableCfgRsp *pRsp) for (int32_t i = 0; i < pRsp->numOfColumns; ++i) { SSchemaExt *pSchemaExt = &pRsp->pSchemaExt[i]; if (tDecodeSSchemaExt(&decoder, pSchemaExt) < 0) return -1; - pSchemaExt->colId = i; - pSchemaExt->compress = 0x02000303; } } else { pRsp->pSchemaExt = NULL; @@ -4502,8 +4500,6 @@ static int32_t tDecodeSTableMetaRsp(SDecoder *pDecoder, STableMetaRsp *pRsp) { for (int32_t i = 0; i < pRsp->numOfColumns; ++i) { SSchemaExt *pSchemaExt = &pRsp->pSchemaExt[i]; if (tDecodeSSchemaExt(pDecoder, pSchemaExt) < 0) return -1; - pSchemaExt->colId = i; - pSchemaExt->compress = 0x02000303; } } else { pRsp->pSchemaExt = NULL;