Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[columnar] [Bug]: Vacuum still fails by hanging indefinitely
During vacuum, stripes are collected in reverse order and if row number is greater than defined limit we should stop and combine previous stripe into them into one. Problem is that while writing rows into temporary write state object - this condition is not greater but greater or equal which lead to infinite loop. Fixed by using proper comparison operator when stripe candidates are choosen.
- Loading branch information