HBASE-19717 IntegrationTestDDLMasterFailover is using outdated value for DataBlockEncoding
Signed-off-by: tedyu <yuzhihong@gmail.com>
This commit is contained in:
parent
45e46bb242
commit
54928ce3ea
|
@ -698,7 +698,7 @@ public class IntegrationTestDDLMasterFailover extends IntegrationTestBase {
|
||||||
try {
|
try {
|
||||||
TableName tableName = selected.getTableName();
|
TableName tableName = selected.getTableName();
|
||||||
// possible DataBlockEncoding ids
|
// 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)];
|
short id = (short) possibleIds[RandomUtils.nextInt(0, possibleIds.length)];
|
||||||
LOG.info("Altering encoding of column family: " + columnDesc + " to: " + id +
|
LOG.info("Altering encoding of column family: " + columnDesc + " to: " + id +
|
||||||
" in table: " + tableName);
|
" in table: " + tableName);
|
||||||
|
|
Loading…
Reference in New Issue