kadirozde commented on code in PR #1531:
URL: https://github.com/apache/phoenix/pull/1531#discussion_r1072766723
##########
phoenix-core/src/main/java/org/apache/phoenix/schema/PTable.java:
##########
@@ -104,8 +104,9 @@ public ViewType combine(ViewType otherType) {
}
public enum IndexType {
- GLOBAL((byte)1),
- LOCAL((byte)2);
+ GLOBAL((byte)1), // Covered Global
+ LOCAL((byte)2), // Covered Local
+ UNCOVERED((byte)3); // Uncovered Global
Review Comment:
I will change the enum to UNCOVERED_GLOBAL as you suggested.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]