1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-3760 Fix issue with random seed list not being initilized to empty

This commit is contained in:
jmrojas2332
2020-03-05 17:30:02 +00:00
parent 52dec05a52
commit 04afbf59c7
2 changed files with 2 additions and 3 deletions

View File

@ -77,7 +77,7 @@ double Func_rand::getDoubleVal(rowgroup::Row& row,
fSeedSet = false;
fSeedIndex += 1;
}
else if (fFirstRow == 0)
else if (fFirstRow == nullptr)
{
// Store first row
fFirstRow = row.getData();