Github user jaanai0 commented on a diff in the pull request:
https://github.com/apache/phoenix/pull/355#discussion_r224306474
--- Diff:
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataProtocol.java
---
@@ -381,10 +371,10 @@ public static MetaDataMutationResult
constructFromProto(MetaDataResponse proto)
result.functions.add(PFunction.createFromProto(function));
}
if (proto.getTablesToDeleteCount() > 0) {
- result.tableNamesToDelete =
+ result.mutatedTableNames =
Lists.newArrayListWithExpectedSize(proto.getTablesToDeleteCount());
--- End diff --
Yep, it will not affect backward compatibility.
---