smiklosovic commented on code in PR #4393:
URL: https://github.com/apache/cassandra/pull/4393#discussion_r2377803984


##########
src/java/org/apache/cassandra/config/GuardrailsOptions.java:
##########
@@ -1430,6 +1473,26 @@ private static Set<String> 
validateTableProperties(Set<String> properties, Strin
         return lowerCaseProperties;
     }
 
+    private static Set<String> validateKeyspaceProperties(Set<String> 
properties, String name)
+    {
+        if(properties == null)
+            throw new IllegalArgumentException(format("Invalid value for %s: 
null is not allowed", name));
+        
+        Set<String> lowerCaseProperties = 
properties.stream().map(String::toLowerCase).collect(toSet());
+
+        Set<String> validKeyspaceProperties = Set.of(

Review Comment:
   Can you specify all options? In table case, we do 
`TableAttributes.allKeywords()`. Add 
   
       public static Set<String> allKeywords()
       {
           return Sets.union(validKeywords, obsoleteKeywords);
       }
   
   to `KeyspaceAttributes` class and reuse it here.



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to