abhishekrb19 commented on code in PR #17082:
URL: https://github.com/apache/druid/pull/17082#discussion_r1766121836


##########
processing/src/main/java/org/apache/druid/java/util/common/parsers/ParserUtils.java:
##########
@@ -52,22 +55,61 @@ public class ParserUtils
     }
   }
 
-  public static Function<String, Object> getMultiValueFunction(
+  /**
+   * @return a function that processes a given string input by splitting it 
into multiple values
+   * using the {@code listSplitter} if thge {@code list delimiter} is present 
in the input. If {@code shouldParseNumbers}
+   * is enabled, the function will also try to parse any numeric values 
present in the input -- integers as {@code Long}
+   * and floating-point numbers as {@code Double}.
+   */
+  public static Function<String, Object> getMultiValueAndParseNumbersFunction(

Review Comment:
   Renamed to `getTransformationFunction`



-- 
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]

Reply via email to