You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: presto-function-namespace-managers/src/main/java/com/facebook/presto/functionNamespace/JsonBasedUdfFunctionMetadata.java
+9
Original file line number
Diff line number
Diff line change
@@ -92,16 +92,19 @@ public JsonBasedUdfFunctionMetadata(
92
92
this.version = requireNonNull(version, "version is null");
93
93
}
94
94
95
+
@JsonProperty
95
96
publicStringgetDocString()
96
97
{
97
98
returndocString;
98
99
}
99
100
101
+
@JsonProperty
100
102
publicFunctionKindgetFunctionKind()
101
103
{
102
104
returnfunctionKind;
103
105
}
104
106
107
+
@JsonProperty
105
108
publicTypeSignaturegetOutputType()
106
109
{
107
110
returnoutputType;
@@ -113,31 +116,37 @@ public List<String> getParamNames()
Copy file name to clipboardexpand all lines: presto-function-namespace-managers/src/main/java/com/facebook/presto/functionNamespace/rest/RestBasedFunctionApis.java
Copy file name to clipboardexpand all lines: presto-function-namespace-managers/src/main/java/com/facebook/presto/functionNamespace/rest/RestBasedFunctionNamespaceManager.java
Copy file name to clipboardexpand all lines: presto-function-namespace-managers/src/main/java/com/facebook/presto/functionNamespace/rest/RestBasedFunctionNamespaceManagerFactory.java
Copy file name to clipboardexpand all lines: presto-function-namespace-managers/src/main/java/com/facebook/presto/functionNamespace/rest/RestBasedFunctionNamespaceManagerModule.java
Copy file name to clipboardexpand all lines: presto-function-namespace-managers/src/main/java/com/facebook/presto/functionNamespace/rest/RestComminicationModule.java
0 commit comments