~pbeaman/akiban-persistit/fix-1157809-aioobe-on-append-key-segment

« back to all changes in this revision

Viewing changes to src/main/java/com/persistit/IntegrityCheck.java

merge pbeaman: Fixes bug1126868.

https://code.launchpad.net/~pbeaman/akiban-persistit/fix-1126868-lock-table-pruning/+merge/152063

Show diffs side-by-side

added added

removed removed

Lines of Context:
1170
1170
                    _counters._mvvPageCount++;
1171
1171
                    if (_prune && !_currentVolume.isReadOnly() && _counters._pruningErrorCount < MAX_PRUNING_ERRORS) {
1172
1172
                        try {
1173
 
                            buffer.pruneMvvValues(tree, true);
 
1173
                            buffer.pruneMvvValues(tree, true, null);
1174
1174
                            _counters._prunedPageCount++;
1175
1175
                        } catch (final PersistitException e) {
1176
1176
                            _counters._pruningErrorCount++;