~pbeaman/akiban-persistit/dynamic-volumes

« back to all changes in this revision

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

  • Committer: Peter Beaman
  • Date: 2013-03-14 14:36:37 UTC
  • mfrom: (374.37.13 stage)
  • Revision ID: pbeaman@akiban.com-20130314143637-3tn8o0gfb9adqzfg
Merge from trunk with changes for lock pruning fix

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++;