adj stream op result
This commit is contained in:
parent
883741c8d5
commit
a618667a5e
|
@ -1553,11 +1553,13 @@ static void prepareRangeScan(SStreamScanInfo* pInfo, SSDataBlock* pBlock, int32_
|
||||||
if (pBlock->info.rows == 0) {
|
if (pBlock->info.rows == 0) {
|
||||||
if (pRes) {
|
if (pRes) {
|
||||||
(*pRes) = false;
|
(*pRes) = false;
|
||||||
|
goto _end;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ((*pRowIndex) == pBlock->info.rows) {
|
if ((*pRowIndex) == pBlock->info.rows) {
|
||||||
if (pRes) {
|
if (pRes) {
|
||||||
(*pRes) = false;
|
(*pRes) = false;
|
||||||
|
goto _end;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1611,6 +1613,9 @@ static void prepareRangeScan(SStreamScanInfo* pInfo, SSDataBlock* pBlock, int32_
|
||||||
if (pRes) {
|
if (pRes) {
|
||||||
(*pRes) = true;
|
(*pRes) = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_end:
|
||||||
|
qTrace("%s success", __func__);
|
||||||
}
|
}
|
||||||
|
|
||||||
static STimeWindow getSlidingWindow(TSKEY* startTsCol, TSKEY* endTsCol, uint64_t* gpIdCol, SInterval* pInterval,
|
static STimeWindow getSlidingWindow(TSKEY* startTsCol, TSKEY* endTsCol, uint64_t* gpIdCol, SInterval* pInterval,
|
||||||
|
|
Loading…
Reference in New Issue