xx789633 commented on code in PR #1860:
URL: https://github.com/apache/fluss/pull/1860#discussion_r2485528361
##########
fluss-server/src/main/java/org/apache/fluss/server/coordinator/MetadataManager.java:
##########
@@ -504,6 +514,20 @@ private boolean isDataLakeEnabled(Map<String, String>
properties) {
return Boolean.parseBoolean(dataLakeEnabledValue);
}
+ public void removeSensitiveTableOptions(Map<String, String>
tableLakeOptions) {
+ if (tableLakeOptions == null || tableLakeOptions.isEmpty()) {
+ return;
+ }
+
+ Iterator<Map.Entry<String, String>> iterator =
tableLakeOptions.entrySet().iterator();
Review Comment:
It's a fuzzy string matching between tableLakeOptions's key and
sensitiveKey. I'm afraid we are not able to do that.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]