This is an automated email from the ASF dual-hosted git repository.
dataroaring 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 f4422905f8d [Fix](Load)Audit logs avoid recording certain sensitive
information (#38769)
f4422905f8d is described below
commit f4422905f8db6e44681db719e1c82d04f9c344e0
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]