This is an automated email from the ASF dual-hosted git repository.
aloyszhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git
The following commit(s) were added to refs/heads/master by this push:
new 5c44cde517 [INLONG-10966][SDK] Fix HexFunction set the Java keyword
'public' (#10967)
5c44cde517 is described below
commit 5c44cde51727cd3fa918358e624b751050530d01
Author: emptyOVO <[email protected]>
AuthorDate: Mon Sep 2 14:26:22 2024 +0800
[INLONG-10966][SDK] Fix HexFunction set the Java keyword 'public' (#10967)
---
.../org/apache/inlong/sdk/transform/process/function/HexFunction.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/inlong-sdk/transform-sdk/src/main/java/org/apache/inlong/sdk/transform/process/function/HexFunction.java
b/inlong-sdk/transform-sdk/src/main/java/org/apache/inlong/sdk/transform/process/function/HexFunction.java
index c641209162..0d33056c72 100644
---
a/inlong-sdk/transform-sdk/src/main/java/org/apache/inlong/sdk/transform/process/function/HexFunction.java
+++
b/inlong-sdk/transform-sdk/src/main/java/org/apache/inlong/sdk/transform/process/function/HexFunction.java
@@ -36,7 +36,7 @@ import java.util.regex.Pattern;
* - If the input argument is a string, the HEX function converts each
character in the string to its corresponding hexadecimal ASCII encoding and
returns the hexadecimal representation of the entire string.
*/
@TransformFunction(names = {"hex"})
-class HexFunction implements ValueParser {
+public class HexFunction implements ValueParser {
private static final Pattern BIG_DECIMAL_PATTERN =
Pattern.compile("^[-+]?\\d+(\\.\\d+)?([eE][-+]?\\d+)?$");