LadyForest commented on code in PR #193:
URL: https://github.com/apache/flink-table-store/pull/193#discussion_r913340834


##########
flink-table-store-core/src/main/java/org/apache/flink/table/store/file/schema/TableSchema.java:
##########
@@ -129,6 +134,33 @@ public Map<String, String> options() {
         return options;
     }
 
+    public List<String> bucketKeys() {
+        String key = options.get(BUCKET_KEY.key());
+        if (StringUtils.isNullOrWhitespaceOnly(key)) {
+            return Collections.emptyList();
+        }
+        List<String> bucketKeys = Arrays.asList(key.split(","));

Review Comment:
   split and trim?



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