saurabhd336 commented on code in PR #10623:
URL: https://github.com/apache/pinot/pull/10623#discussion_r1172493330
##########
pinot-spi/src/main/java/org/apache/pinot/spi/config/table/FieldConfig.java:
##########
@@ -159,4 +159,74 @@ public TimestampConfig getTimestampConfig() {
public Map<String, String> getProperties() {
return _properties;
}
+
+ public static class Builder {
+ private String _name;
+ private EncodingType _encodingType;
+ private List<IndexType> _indexTypes;
+ private JsonNode _indexes;
+ private CompressionCodec _compressionCodec;
+ private Map<String, String> _properties;
+ private TimestampConfig _timestampConfig;
+ private JsonNode _tierOverwrites;
+
+ public Builder() {
+ }
+
+ public Builder(FieldConfig other) {
Review Comment:
(nit) NonNull annotation
--
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]