[Fix](Load)Audit logs avoid recording certain sensitive information #38769 (#38784)

…

## Proposed changes

#38769

<!--Describe your changes.-->
This commit is contained in:
Calvin Kirs
2024-08-04 10:53:03 +08:00
committed by GitHub
parent 0603ec1d9d
commit 7c70f75198

View File

@ -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();