From 85b0c8c798d4872a7a0d15184940e07ab2b7bc19 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Mon, 1 Apr 2024 07:17:55 +0000 Subject: [PATCH] fix ci error --- source/common/src/tdataformat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/src/tdataformat.c b/source/common/src/tdataformat.c index 9415599c6e..1f0e4e550c 100644 --- a/source/common/src/tdataformat.c +++ b/source/common/src/tdataformat.c @@ -4259,7 +4259,7 @@ int32_t tCompressData(void *input, // input (l1 == L1_DISABLED && l2 == L2_DISABLED)*/) { memcpy(output, input, info->originalSize); info->compressedSize = info->originalSize; - } else if (info->cmprAlg == TWO_STAGE_COMP) { + } else if (info->cmprAlg == ONE_STAGE_COMP || info->cmprAlg == TWO_STAGE_COMP) { SBuffer local; tBufferInit(&local);