fix:fix error in table scan by group
This commit is contained in:
parent
5ed0c48af0
commit
f1860b7918
|
@ -379,7 +379,7 @@ static SSDataBlock* doTableScanImpl(SOperatorInfo* pOperator) {
|
|||
int32_t len = buildGroupKeys(pTableScanInfo->keyBuf, pTableScanInfo->pGroupColVals);
|
||||
|
||||
uint64_t *groupId = taosHashGet(pTableScanInfo->pGroupSet, pTableScanInfo->keyBuf, len);
|
||||
if (!groupId) {
|
||||
if (groupId) {
|
||||
pBlock->info.groupId = *groupId;
|
||||
|
||||
}else{
|
||||
|
|
Loading…
Reference in New Issue