!791 fix bug that throw VerifyExecption when run a insert query
Merge pull request !791 from luren/fix-insert-bug
This commit is contained in:
commit
494b05bdc3
|
|
@ -222,6 +222,10 @@ public class BigintGroupByHash
|
|||
nullGroupId = nextGroupId++;
|
||||
}
|
||||
|
||||
// increase capacity, if necessary. after nextGroupId++, it maybe equals maxFill, so need to check whether need rehash
|
||||
if (needRehash()) {
|
||||
tryRehash();
|
||||
}
|
||||
return nullGroupId;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue