robertzych commented on code in PR #10463:
URL: https://github.com/apache/pinot/pull/10463#discussion_r1214574091
##########
pinot-common/src/main/java/org/apache/pinot/common/utils/SegmentUtils.java:
##########
@@ -39,14 +39,30 @@ private SegmentUtils() {
@Nullable
public static Integer getRealtimeSegmentPartitionId(String segmentName,
String realtimeTableName,
HelixManager helixManager, @Nullable String partitionColumn) {
+ return getRealtimeSegmentPartitionId(
+ segmentName, realtimeTableName, helixManager, partitionColumn, null);
+ }
+
+ @Nullable
+ public static Integer getRealtimeSegmentPartitionId(String segmentName,
String realtimeTableName,
+ SegmentZKMetadata segmentZKMetadata) {
+ return getRealtimeSegmentPartitionId(segmentName, realtimeTableName, null,
null, segmentZKMetadata);
Review Comment:
Since the generator is no longer using this, I've rolled it back.
--
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]