Github user twdsilva commented on a diff in the pull request:
https://github.com/apache/phoenix/pull/277#discussion_r146660595
--- Diff:
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataProtocol.java
---
@@ -95,6 +97,7 @@
// Key is the SYSTEM.CATALOG timestamp for the version and value is
the version string.
private static final NavigableMap<Long, String> TIMESTAMP_VERSION_MAP
= new TreeMap<>();
static {
+ TIMESTAMP_VERSION_MAP.put(MIN_SYSTEM_TABLE_MIGRATION_TIMESTAMP,
MIGRATION_IN_PROGRESS);
--- End diff --
Is this only used in a test? If so can you change the test to use
MIN_SYSTEM_TABLE_TIMESTAMP?
---