flyrain commented on code in PR #4537:
URL: https://github.com/apache/polaris/pull/4537#discussion_r3321250329


##########
polaris-core/src/main/java/org/apache/polaris/core/storage/gcp/GcpCredentialsStorageIntegration.java:
##########
@@ -202,10 +202,11 @@ public static CredentialAccessBoundary 
generateAccessBoundaryRules(
     Map<String, List<String>> readConditionsMap = new HashMap<>();
     Map<String, List<String>> writeConditionsMap = new HashMap<>();
 
-    HashSet<String> readBuckets = new HashSet<>();
-    HashSet<String> writeBuckets = new HashSet<>();
+    LinkedHashSet<String> readBuckets = new LinkedHashSet<>();
+    LinkedHashSet<String> writeBuckets = new LinkedHashSet<>();

Review Comment:
   Good questions. I think the generic `HashSet` doesn't ordering, while a list 
could have duplicated elements. @dimas-b can confirm. 



-- 
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]

Reply via email to