priyankporwal commented on a change in pull request #514: PHOENIX-5261:
Implement ALTER TABLE/VIEW ADD COLUMN CASCADE
URL: https://github.com/apache/phoenix/pull/514#discussion_r291883809
##########
File path:
phoenix-core/src/main/java/org/apache/phoenix/schema/DelegateTable.java
##########
@@ -142,6 +143,14 @@ public Integer getBucketNum() {
return delegate.getIndexes();
}
+ @Override
+ public List<PTable> getIndexes(List<NamedNode> indexes) { return
delegate.getIndexes(indexes); }
+
+ @Override
+ public List<PTable> getIndexes(boolean viewOnly) {
Review comment:
Nit: Consistent indentation of the two functions. First one is all of one
line, second one (though less wide) is broken down into multiple lines.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services