Skip to content

Commit

Permalink
Removed extra function names
Browse files Browse the repository at this point in the history
  • Loading branch information
cgivre committed Jun 19, 2022
1 parent a220ed9 commit 5ab0489
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class JsonConvertFrom {

private JsonConvertFrom() {}

@FunctionTemplate(names = {"convert_fromJSON", "convertFromJson", "convert_from_json"},
@FunctionTemplate(name = "convert_fromJSON",
scope = FunctionScope.SIMPLE, nulls = NullHandling.INTERNAL)
public static class ConvertFromJsonNullableInput implements DrillSimpleFunc {

Expand Down Expand Up @@ -97,7 +97,7 @@ public void eval() {
}
}

@FunctionTemplate(names = {"convert_fromJSON", "convertFromJson", "convert_from_json"},
@FunctionTemplate(name = "convert_fromJSON",
scope = FunctionScope.SIMPLE, nulls = NullHandling.INTERNAL)
public static class ConvertFromJsonVarcharInput implements DrillSimpleFunc {

Expand Down

0 comments on commit 5ab0489

Please sign in to comment.