From 6358c33368746cf2c93463ab423f5c9ff11b641b Mon Sep 17 00:00:00 2001 From: zhao_wei_nan <326747337@qq.com> Date: Tue, 13 Apr 2021 13:01:44 +0800 Subject: [PATCH] [FLINK-22250][sql-parser] Add missing 'createSystemFunctionOnlySupportTemporary' entry in ParserResource.properties --- .../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 8a7d5a1c46c95..d77af88275c73 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.