This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 053947ef7b8 [fix](compile) fix FE compilation error (#41780)
053947ef7b8 is described below
commit 053947ef7b818844d2d66ad821e725a7ff77fadd
Author: Rayner Chen <[email protected]>
AuthorDate: Mon Oct 14 15:38:36 2024 +0800
[fix](compile) fix FE compilation error (#41780)
---
.../trees/expressions/functions/executable/StringArithmetic.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/executable/StringArithmetic.java
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/executable/StringArithmetic.java
index c405ac40b09..ed319e02739 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/executable/StringArithmetic.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/executable/StringArithmetic.java
@@ -793,7 +793,7 @@ public class StringArithmetic {
/**
* Executable arithmetic functions urlencode
*/
- @ExecFunction(name = "url_encode")
+ @ExecFunction(name = "url_encode", argTypes = {"VARCHAR"}, returnType =
"VARCHAR")
public static Expression urlEncode(StringLikeLiteral first) {
try {
return castStringLikeLiteral(first,
URLEncoder.encode(first.getValue(), StandardCharsets.UTF_8.name()));
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]