This is an automated email from the ASF dual-hosted git repository.
lihaopeng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new bceb0b58a1 [fix](udf) fix create udf function with uppercase database
name can't recognize (#16410)
bceb0b58a1 is described below
commit bceb0b58a1b4b3f7dae6f8b2992cefd9fa4c1f8f
Author: zhangstar333 <[email protected]>
AuthorDate: Tue Feb 14 10:52:11 2023 +0800
[fix](udf) fix create udf function with uppercase database name can't
recognize (#16410)
---
fe/fe-core/src/main/java/org/apache/doris/analysis/FunctionName.java | 3 ---
1 file changed, 3 deletions(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/analysis/FunctionName.java
b/fe/fe-core/src/main/java/org/apache/doris/analysis/FunctionName.java
index 58cf458f94..4f09882cac 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/analysis/FunctionName.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/FunctionName.java
@@ -53,9 +53,6 @@ public class FunctionName implements Writable {
public FunctionName(String db, String fn) {
this.db = db;
this.fn = fn.toLowerCase();
- if (this.db != null) {
- this.db = this.db.toLowerCase();
- }
}
public FunctionName(String fn) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]