Github user twdsilva commented on a diff in the pull request:
https://github.com/apache/phoenix/pull/355#discussion_r220423833
--- Diff:
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
---
@@ -2853,12 +2687,13 @@ MetaDataMutationResult updateMutation(PTable table,
byte[][] rowKeyMetaData,
return result;
} else {
table = buildTable(key, cacheKey, region,
HConstants.LATEST_TIMESTAMP, clientVersion, false, false, null);
- return new
MetaDataMutationResult(MutationCode.TABLE_ALREADY_EXISTS, currentTime, table);
--- End diff --
Is there a reason the MutationCode returned needs to change?
---