clintropolis commented on a change in pull request #10248:
URL: https://github.com/apache/druid/pull/10248#discussion_r467351503
##########
File path:
processing/src/main/java/org/apache/druid/segment/column/ColumnCapabilities.java
##########
@@ -105,4 +104,46 @@ public String toString()
return StringUtils.toLowerCase(super.toString());
}
}
+
+ interface CoercionLogic
Review comment:
Added some javadocs, also tried my hand at documenting
`ColumnCapabilities` while i was there
##########
File path:
processing/src/main/java/org/apache/druid/segment/column/ColumnCapabilities.java
##########
@@ -105,4 +104,46 @@ public String toString()
return StringUtils.toLowerCase(super.toString());
}
}
+
+ interface CoercionLogic
+ {
+ boolean dictionaryEncoded();
+ boolean dictionaryValuesSorted();
+ boolean dictionaryValuesUnique();
+ boolean multipleValues();
+ }
+
+ class AllCoercionLogic implements CoercionLogic
Review comment:
removed
----------------------------------------------------------------
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]