Github user twdsilva commented on a diff in the pull request:
https://github.com/apache/phoenix/pull/355#discussion_r224637219
--- 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 --
Rename tablesToDelete in the MetaDataResponse proto to mutatedTables
---