fix: decode error

This commit is contained in:
factosea 2024-03-11 11:46:44 +08:00
parent 78c5210e82
commit e2ca8c45a3
1 changed files with 1 additions and 1 deletions

View File

@ -8173,7 +8173,7 @@ static int32_t tDecodeSVAlterTbReqCommon(SDecoder *pDecoder, SVAlterTbReq *pReq)
} }
break; break;
case TSDB_ALTER_TABLE_UPDATE_COLUMN_COMPRESS: case TSDB_ALTER_TABLE_UPDATE_COLUMN_COMPRESS:
if (tEncodeU32(pDecoder, &pReq->compress) < 0) return -1; if (tDecodeU32(pDecoder, &pReq->compress) < 0) return -1;
break; break;
default: default:
break; break;