Skip to content

Commit

Permalink
Add comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongyujiang committed Aug 5, 2024
1 parent f3a4311 commit 954dcfa
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -489,9 +489,12 @@ private static Map<String, String> applySchemaChanges(
newOptions.put(BUCKET_KEY.key(), Joiner.on(',').join(newBucketColumns));
}

// TODO: Apply changes to other options that contain column names, such as `sequence.field`
return newOptions;
}

// Apply column rename changes to the list of column names, this will not change the order of
// the column names
private static List<String> applyColumnRename(
List<String> columns, Iterable<RenameColumn> renames) {
if (Iterables.isEmpty(renames)) {
Expand Down

0 comments on commit 954dcfa

Please sign in to comment.