HBASE-19717 IntegrationTestDDLMasterFailover is using outdated value for DataBlockEncoding

Signed-off-by: tedyu <yuzhihong@gmail.com>
This commit is contained in:
Sergey Soldatov 2018-01-05 16:04:31 -08:00 committed by tedyu
parent 45e46bb242
commit 54928ce3ea
1 changed files with 1 additions and 1 deletions

View File

@ -698,7 +698,7 @@ public class IntegrationTestDDLMasterFailover extends IntegrationTestBase {
try {
TableName tableName = selected.getTableName();
// possible DataBlockEncoding ids
int[] possibleIds = {0, 2, 3, 4, 6};
int[] possibleIds = {0, 2, 3, 4, 7};
short id = (short) possibleIds[RandomUtils.nextInt(0, possibleIds.length)];
LOG.info("Altering encoding of column family: " + columnDesc + " to: " + id +
" in table: " + tableName);