Ted Yu created HBASE-14173:
------------------------------
Summary: includeMVCCReadpoint parameter in
DefaultCompactor#createTmpWriter() represents no-op
Key: HBASE-14173
URL: https://issues.apache.org/jira/browse/HBASE-14173
Project: HBase
Issue Type: Bug
Reporter: Ted Yu
Assignee: Ted Yu
Fix For: 2.0.0
Around line 160:
{code}
return store.createWriterInTmp(fd.maxKeyCount, this.compactionCompression,
true, fd.maxMVCCReadpoint >= 0, fd.maxTagsLength >0);
{code}
The condition, fd.maxMVCCReadpoint >= 0, represents no-op.
The correct condition should be fd.maxMVCCReadpoint > 0
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)