Skip to content

Commit

Permalink
code clean.
Browse files Browse the repository at this point in the history
  • Loading branch information
horizonzy committed Jun 4, 2024
1 parent 1f14d13 commit a01e834
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,17 +95,6 @@ public class TableConfig<T> {
"needs to be a boolean."
);

/**
* Whether this Delta table is append-only. Files can't be deleted, or values can't be updated.
*/
public static final TableConfig<Boolean> IS_APPEND_ONLY = new TableConfig<>(
"delta.appendOnly",
"false",
Boolean::valueOf,
value -> true,
"needs to be a boolean."
);

private final String key;
private final String defaultValue;
private final Function<String, T> fromString;
Expand Down

0 comments on commit a01e834

Please sign in to comment.