add test cases
This commit is contained in:
parent
bbae7259cf
commit
0201348bbe
|
@ -484,8 +484,8 @@ int32_t addTagPseudoColumnData(SReadHandle* pHandle, const SExprInfo* pExpr, int
|
|||
int32_t code = 0;
|
||||
|
||||
// backup the rows
|
||||
int32_t backupRows = (rows == 1) ? rows : pBlock->info.rows;
|
||||
pBlock->info.rows = rows;
|
||||
int32_t backupRows = pBlock->info.rows;
|
||||
pBlock->info.rows = (rows < pBlock->info.rows) ? pBlock->info.rows : rows;
|
||||
|
||||
bool freeReader = false;
|
||||
STableCachedVal val = {0};
|
||||
|
|
Loading…
Reference in New Issue