fix(tsdb): fix the length of column type overflow.

This commit is contained in:
Haojun Liao 2024-05-14 16:22:11 +08:00
parent c87ced12b6
commit 9300b7a401
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ static void initLastProcKey(STableBlockScanInfo *pScanInfo, STsdbReader* pReader
int32_t numOfPks = pReader->suppInfo.numOfPks;
bool asc = ASCENDING_TRAVERSE(pReader->info.order);
int8_t type = pReader->suppInfo.pk.type;
int8_t bytes = pReader->suppInfo.pk.bytes;
int32_t bytes = pReader->suppInfo.pk.bytes;
SRowKey* pRowKey = &pScanInfo->lastProcKey;
if (asc) {