This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new 7c70f75198f [Fix](Load)Audit logs avoid recording certain sensitive
information #38769 (#38784)
7c70f75198f is described below
commit 7c70f75198fba94d3f13be2f7923597916462f5c
Author: Calvin Kirs <[email protected]>
AuthorDate: Sun Aug 4 10:53:03 2024 +0800
[Fix](Load)Audit logs avoid recording certain sensitive information #38769
(#38784)
…
## Proposed changes
#38769
<!--Describe your changes.-->
---
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 01a4490003b..d18496c6177 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
@@ -536,7 +536,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<String, String>(properties, "=", true,
false, true));
sb.append(")");
}
return sb.toString();
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]