Github user twdsilva commented on a diff in the pull request:
https://github.com/apache/phoenix/pull/324#discussion_r210784236
--- Diff:
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
---
@@ -382,6 +389,7 @@
private static final int DISABLE_WAL_INDEX =
TABLE_KV_COLUMNS.indexOf(DISABLE_WAL_KV);
private static final int MULTI_TENANT_INDEX =
TABLE_KV_COLUMNS.indexOf(MULTI_TENANT_KV);
private static final int VIEW_TYPE_INDEX =
TABLE_KV_COLUMNS.indexOf(VIEW_TYPE_KV);
+ private static final int VIEW_INDEX_ID_DATA_TYPE =
TABLE_KV_COLUMNS.indexOf(VIEW_INDEX_ID_DATA_TYPE_BYTES_KV);
--- End diff --
nit: rename to VIEW_INDEX_ID_DATA_TYPE_INDEX
---