Merge pull request #25769 from taosdata/fix/TS-4791
fix(tsdb): fix the length of column type overflow.
This commit is contained in:
commit
a3bd3a4c76
|
@ -212,7 +212,7 @@ static void initLastProcKey(STableBlockScanInfo *pScanInfo, STsdbReader* pReader
|
||||||
int32_t numOfPks = pReader->suppInfo.numOfPks;
|
int32_t numOfPks = pReader->suppInfo.numOfPks;
|
||||||
bool asc = ASCENDING_TRAVERSE(pReader->info.order);
|
bool asc = ASCENDING_TRAVERSE(pReader->info.order);
|
||||||
int8_t type = pReader->suppInfo.pk.type;
|
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;
|
SRowKey* pRowKey = &pScanInfo->lastProcKey;
|
||||||
if (asc) {
|
if (asc) {
|
||||||
|
|
Loading…
Reference in New Issue