This is an automated email from the ASF dual-hosted git repository. jark pushed a commit to branch release-1.13 in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.13 by this push: new d83c3b8 [FLINK-22250][sql-parser] Add missing 'createSystemFunctionOnlySupportTemporary' entry in ParserResource.properties (#15582) d83c3b8 is described below commit d83c3b82cdcdc955a6b3e1c0ce798a49979b6f54 Author: zhaown <51357674+chao...@users.noreply.github.com> AuthorDate: Fri Apr 30 19:24:55 2021 +0800 [FLINK-22250][sql-parser] Add missing 'createSystemFunctionOnlySupportTemporary' entry in ParserResource.properties (#15582) --- .../org.apache.flink.sql.parser.utils/ParserResource.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/flink-table/flink-sql-parser/src/main/resources/org.apache.flink.sql.parser.utils/ParserResource.properties b/flink-table/flink-sql-parser/src/main/resources/org.apache.flink.sql.parser.utils/ParserResource.properties index 8a7d5a1..d77af88 100644 --- a/flink-table/flink-sql-parser/src/main/resources/org.apache.flink.sql.parser.utils/ParserResource.properties +++ b/flink-table/flink-sql-parser/src/main/resources/org.apache.flink.sql.parser.utils/ParserResource.properties @@ -18,3 +18,4 @@ # MultipleWatermarksUnsupported=Multiple WATERMARK statements is not supported yet. OverwriteIsOnlyUsedWithInsert=OVERWRITE expression is only used with INSERT statement. +createSystemFunctionOnlySupportTemporary=CREATE SYSTEM FUNCTION is not supported, system functions can only be registered as temporary function, you can use CREATE TEMPORARY SYSTEM FUNCTION instead.