KKcorps commented on code in PR #9150:
URL: https://github.com/apache/pinot/pull/9150#discussion_r936279329
##########
pinot-spi/src/main/java/org/apache/pinot/spi/config/table/UpsertConfig.java:
##########
@@ -97,4 +99,24 @@ public Strategy getDefaultPartialUpsertStrategy() {
public String getComparisonColumn() {
return _comparisonColumn;
}
+
+ public void setMode(Mode mode) {
+ _mode = mode;
+ }
+
+ public void setHashFunction(HashFunction hashFunction) {
+ _hashFunction = hashFunction;
+ }
+
+ public void setPartialUpsertStrategies(Map<String, Strategy>
partialUpsertStrategies) {
Review Comment:
Can we add java doc here telling that key in this map should be columnName.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]