File tree 1 file changed +2
-5
lines changed
src/test/resources/systemfunction/src/main/java/sample
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 6
6
import com .google .auto .service .AutoService ;
7
7
8
8
/**
9
- * Returns an array of substrings by splitting the input string based on the given delimiter.
10
- * If the delimiter is not found in the string, the original string is returned as the only element
11
- * in the array. If the delimiter is empty, every character in the string is split. If the string or
12
- * delimiter is null, a null value is returned. If the delimiter is found at the beginning or end of
13
- * the string, or there are contiguous delimiters, then an empty string is added to the array.
9
+ * Converts the input string to uppercase.
10
+ * If the input string is null, a null value is returned.
14
11
*/
15
12
@ AutoService (AutoRegisterSystemFunction .class )
16
13
public class Upper extends ScalarFunction implements AutoRegisterSystemFunction {
You can’t perform that action at this time.
0 commit comments