HBASE-14173 includeMVCCReadpoint parameter in DefaultCompactor#createTmpWriter() represents no-op

This commit is contained in:
tedyu 2015-07-30 11:12:25 -07:00
parent 5f1129c799
commit f1f0d99662
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ public class DefaultCompactor extends Compactor {
// make this writer with tags always because of possible new cells with tags.
return store.createWriterInTmp(fd.maxKeyCount, this.compactionCompression,
true, fd.maxMVCCReadpoint >= 0, fd.maxTagsLength >0);
true, fd.maxMVCCReadpoint > 0, fd.maxTagsLength >0);
}