luoyuxia commented on code in PR #19742:
URL: https://github.com/apache/flink/pull/19742#discussion_r892282256
##########
flink-table/flink-sql-parser/src/main/java/org/apache/flink/sql/parser/ddl/SqlCreateFunction.java:
##########
@@ -98,6 +103,15 @@ public void unparse(SqlWriter writer, int leftPrec, int
rightPrec) {
writer.keyword("LANGUAGE");
writer.keyword(functionLanguage);
}
+ if (resourceInfos.size() > 0) {
+ writer.keyword("USING");
+ SqlWriter.Frame withFrame = writer.startList("", "");
+ for (SqlNode jarPath : resourceInfos) {
Review Comment:
```suggestion
for (SqlNode resourcePath : resourceInfos) {
```
--
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]