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 bc954d423fd [Fix](Load)Audit logs avoid recording certain sensitive 
information (#38769)
bc954d423fd is described below

commit bc954d423fd93a80e231d52d2ec9117b5e5612f8
Author: Calvin Kirs <[email protected]>
AuthorDate: Sun Aug 4 11:17:46 2024 +0800

    [Fix](Load)Audit logs avoid recording certain sensitive information (#38769)
---
 fe/fe-core/src/main/java/org/apache/doris/analysis/LoadStmt.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/LoadStmt.java 
b/fe/fe-core/src/main/java/org/apache/doris/analysis/LoadStmt.java
index b879bcc7c9a..a94fcb0d13c 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/analysis/LoadStmt.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/LoadStmt.java
@@ -578,7 +578,7 @@ public class LoadStmt extends DdlStmt {
 
         if (properties != null && !properties.isEmpty()) {
             sb.append("\nPROPERTIES (");
-            sb.append(new PrintableMap<String, String>(properties, "=", true, 
false));
+            sb.append(new PrintableMap<>(properties, "=", true, false, true));
             sb.append(")");
         }
         return sb.toString();


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to